summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorStefan Reinauer <stefan.reinauer@coreboot.org>2015-06-29 16:45:57 -0700
committerStefan Reinauer <stefan.reinauer@coreboot.org>2015-06-30 21:45:50 +0200
commitb12a448c9709a4d78410ac4e79a72f28096871ce (patch)
treeba6b440a53090410f94d7082797f5c5ab5f0426d /util
parent40a3e321d4e8f2877de1700db67b8c7f7ea89820 (diff)
downloadcoreboot-staging-b12a448c9709a4d78410ac4e79a72f28096871ce.zip
coreboot-staging-b12a448c9709a4d78410ac4e79a72f28096871ce.tar.gz
kconfig: Fix defconfig targets
The syntax of "conf" has changed, but we never adapted our Kconfig Makefile since we are not typically using those targets (except for coreinfo) Change-Id: Ib95b53d255d7456cc6d6bcc7048fcaa0db1ce142 Signed-off-by: Stefan Reinauer <stefan.reinauer@coreboot.org> Reviewed-on: http://review.coreboot.org/10716 Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Marc Jones <marc.jones@se-eng.com>
Diffstat (limited to 'util')
-rw-r--r--util/kconfig/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/util/kconfig/Makefile b/util/kconfig/Makefile
index eb9e38c..ab74113 100644
--- a/util/kconfig/Makefile
+++ b/util/kconfig/Makefile
@@ -91,14 +91,14 @@ savedefconfig: $(objk)/conf
defconfig: $(objk)/conf
ifeq ($(KBUILD_DEFCONFIG),)
- $< -d $(Kconfig)
+ $< --defconfig $(Kconfig)
else
@echo "*** Default configuration is based on '$(KBUILD_DEFCONFIG)'"
- $< -D $(KBUILD_DEFCONFIG) $(Kconfig)
+ $< --defconfig=$(KBUILD_DEFCONFIG) $(Kconfig)
endif
%_defconfig: $(objk)/conf
- $< -D configs/$@ $(Kconfig)
+ $< --defconfig=configs/$@ $(Kconfig)
# Help text used by make help
help:
OpenPOWER on IntegriCloud