Patrick Georgi ([email protected]) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/1037
-gerrit commit ef19ebfb6133089012cf505018afbafbea7cdb25 Author: Patrick Georgi <[email protected]> Date: Mon May 21 20:10:04 2012 +0200 abuild: Disable abuild-level parallelism for now It still failed because make touches files it isn't supposed to touch. Change-Id: I5a6ceaa9d5da212c1e34b121cf39fa9d27964747 Signed-off-by: Patrick Georgi <[email protected]> --- util/abuild/abuild | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/util/abuild/abuild b/util/abuild/abuild index 481fbc2..3639cc6 100755 --- a/util/abuild/abuild +++ b/util/abuild/abuild @@ -606,12 +606,12 @@ USE_XARGS=0 if [ "$cpus" != "1" ]; then if [ "$target" = "" ]; then # Test if xargs supports the non-standard -P flag - echo | xargs -P 0$cpus -n 1 echo 2>/dev/null >/dev/null && USE_XARGS=1 + # FIXME: disabled until we managed to eliminate all the make(1) quirks + echo | xargs -P 0$cpus -n 1 echo 2>/dev/null >/dev/null # && USE_XARGS=1 fi fi if [ "$USE_XARGS" = "0" ]; then -export MAKEFLAGS="-j $cpus" build_all_targets() { for VENDOR in $( vendors ); do -- coreboot mailing list: [email protected] http://www.coreboot.org/mailman/listinfo/coreboot

