Monorepo for Aesthetic.Computer aesthetic.computer

fix: xargs log → shell variable (log is a function, not a binary)

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

+3 -2
+3 -2
fedac/native/docker-build.sh
··· 294 294 else 295 295 log " iris_dri.so: all deps OK" 296 296 fi 297 - # Final ldd check — log to build output 298 - LD_LIBRARY_PATH="$IROOT/lib64" ldd "$IROOT/lib64/dri/iris_dri.so" 2>&1 | grep -c "not found" | xargs -I{} log " iris_dri.so final check: {} missing deps" 297 + # Final ldd check 298 + FINAL_MISSING=$(LD_LIBRARY_PATH="$IROOT/lib64" ldd "$IROOT/lib64/dri/iris_dri.so" 2>&1 | grep -c "not found" || true) 299 + log " iris_dri.so final check: ${FINAL_MISSING:-0} missing deps" 299 300 fi 300 301 301 302 # ── 2h: Verify NO broken symlinks ──