[coreboot-gerrit] New patch to review for coreboot: Makefile.inc: Add dependency on util/kconfig/conf for config.h

Martin Roth (martinroth@google.com) gerrit at coreboot.org
Mon Feb 29 05:05:04 CET 2016


Martin Roth (martinroth at google.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/13859

-gerrit

commit 3daa330fe1f78a38956e9a8e151e75af5b654517
Author: Martin Roth <martinroth at google.com>
Date:   Sun Feb 28 21:04:15 2016 -0700

    Makefile.inc: Add dependency on util/kconfig/conf for config.h
    
    This dependency wasn't called out before, and when building with enough
    threads, the build would fail due to a collision trying to build
    build/util/kconfig/conf.
    
    Fixes this failure:
    make[1]: execvp: build/util/kconfig/conf: Permission denied
    /home/martin/git/coreboot/util/kconfig/Makefile:40: recipe for target
    'oldconfig' failed
    make[1]: *** [oldconfig] Error 127
    Makefile:167: recipe for target 'build/config.h' failed
    
    Change-Id: Ib78d36bab0ba469796d89877bbe6a61e05196e87
    Signed-off-by: Martin Roth <martinroth at google.com>
---
 Makefile.inc | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/Makefile.inc b/Makefile.inc
index 68012d9..7ed229e 100644
--- a/Makefile.inc
+++ b/Makefile.inc
@@ -422,6 +422,8 @@ $(BIMGTOOL): $(top)/util/bimgtool/bimgtool.c
 	@printf "    HOSTCC     $(subst $(obj)/,,$(@))\n"
 	$(HOSTCC) $(HOSTCFLAGS) -o $@ $<
 
+$(obj)/config.h: $(objutil)/kconfig/conf
+
 #######################################################################
 # needed objects that every mainboard uses
 # Creation of these is architecture and mainboard independent



More information about the coreboot-gerrit mailing list