Angel Pons has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/45605 )
Change subject: [TEST] util/abuild: Redirect output back to /dev/null ......................................................................
[TEST] util/abuild: Redirect output back to /dev/null
Commit 0d431ac removed the redirection. Try adding it back again.
Change-Id: I872118b7dd68d5cf3bdaba0413287f41844cef3c Signed-off-by: Angel Pons th3fanbus@gmail.com --- M util/abuild/abuild 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/05/45605/1
diff --git a/util/abuild/abuild b/util/abuild/abuild index 7561495..538b7d3 100755 --- a/util/abuild/abuild +++ b/util/abuild/abuild @@ -821,7 +821,7 @@ printf "%s" "$configoptions" > "$TMPCFG" $MAKE -j "$cpus" DOTCONFIG="$TMPCFG" obj="$TARGET/temp" objutil="$TARGET/sharedutils" allnoconfig printf "%s" "$configoptions" >> "$TMPCFG" - yes "" 2>/dev/null | $MAKE -j "$cpus" DOTCONFIG="$TMPCFG" obj="$TARGET/temp" objutil="$TARGET/sharedutils" oldconfig + yes "" 2>/dev/null | $MAKE -j "$cpus" DOTCONFIG="$TMPCFG" obj="$TARGET/temp" objutil="$TARGET/sharedutils" oldconfig > /dev/null 2>&1 BUILDPREFIX= if [ "$scanbuild" = "true" ]; then scanbuild_out=$TARGET/sharedutils-scanbuild