mirror of
https://github.com/kata-containers/kata-containers.git
synced 2026-07-01 22:50:54 +00:00
With `make all -j N` running multiple tarballs concurrently and silent mode redirecting each build's stdio to its per-target log, a failing target's "Failed to build: <name>, logs:" banner gets interleaved with other in-flight jobs' output, making it hard to tell which target failed. Pass `--output-sync=target` to the recursive make so each sub-make's output is buffered and emitted as one block when the target finishes, keeping the failure banner contiguous with its log dump. Signed-off-by: Zvonko Kaiser <zkaiser@nvidia.com> Assisted-By: Claude <noreply@anthropic.com>