summaryrefslogtreecommitdiffstats
path: root/Makefile.inc
diff options
context:
space:
mode:
authorJonathan A. Kollasch <jakllsch@kollasch.net>2015-08-10 12:15:40 -0500
committerStefan Reinauer <stefan.reinauer@coreboot.org>2015-08-10 20:18:52 +0200
commitd09b32b668f0f131144710f561d36eef72cb5625 (patch)
tree931134f908cea78ef55b25808950f311574a8cb3 /Makefile.inc
parent7605a5ac575d80ef68f06f7a7f59522c865a4b36 (diff)
downloadcoreboot-d09b32b668f0f131144710f561d36eef72cb5625.tar.gz
coreboot-d09b32b668f0f131144710f561d36eef72cb5625.tar.bz2
coreboot-d09b32b668f0f131144710f561d36eef72cb5625.zip
Makefile.inc: use correct make
Change-Id: I4ff1da3fcb787d72ba58b976f73a57ccc0e1c260 Signed-off-by: Jonathan A. Kollasch <jakllsch@kollasch.net> Reviewed-on: http://review.coreboot.org/11155 Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'Makefile.inc')
-rw-r--r--Makefile.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.inc b/Makefile.inc
index 65d308d1ef45..144bee658361 100644
--- a/Makefile.inc
+++ b/Makefile.inc
@@ -628,7 +628,7 @@ ifeq ($(CONFIG_INCLUDE_CONFIG_FILE),y)
@printf " CONFIG $(DOTCONFIG)\n"
if [ -f $(DOTCONFIG) ]; then \
echo "# This image was built using git revision" `git rev-parse HEAD` > $(obj)/config.tmp && \
- make DOTCONFIG=$(DOTCONFIG) DEFCONFIG=$(obj)/config.tmp savedefconfig && \
+ $(MAKE) DOTCONFIG=$(DOTCONFIG) DEFCONFIG=$(obj)/config.tmp savedefconfig && \
$(CBFSTOOL) $@.tmp add -f $(obj)/config.tmp -n config -t raw; rm -f $(obj)/config.tmp ; fi
@printf " REVISION build.h\n"
if [ -f $(obj)/build.h ]; then $(CBFSTOOL) $@.tmp add -f $(obj)/build.h -n revision -t raw; fi