Patrick Georgi (patrick@georgi-clan.de) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/6197
-gerrit
commit 4260dcf589fbbaf91ea3f39ef923e12367c92f54 Author: Patrick Georgi patrick@georgi-clan.de Date: Mon Jul 7 12:25:30 2014 +0200
build system: prevent race on more tool binaries
ifdfake is the newest tool addition that leads to build time races on highly parallel builds.
Change-Id: I86289e50079da851dcc8e1c05c2536d5c03de87c Signed-off-by: Patrick Georgi patrick@georgi-clan.de --- Makefile.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile.inc b/Makefile.inc index a6a8cbe..5e4c5c5 100644 --- a/Makefile.inc +++ b/Makefile.inc @@ -404,7 +404,7 @@ crosstools-arm: clean-for-update crossgcc-clean: clean-for-update $(MAKE) -C util/crossgcc clean
-tools: $(objutil)/kconfig/conf $(objutil)/cbfstool/cbfstool $(objutil)/cbfstool/rmodtool $(objutil)/nvramtool/nvramtool $(objutil)/romcc/romcc $(objutil)/sconfig/sconfig +tools: $(objutil)/kconfig/conf $(objutil)/cbfstool/cbfstool $(objutil)/cbfstool/rmodtool $(objutil)/nvramtool/nvramtool $(ROMCC_BIN) $(objutil)/sconfig/sconfig $(IFDTOOL) $(IFDFAKE)
########################################################################### # Common recipes for all stages