diff options
author | Nico Huber <nico.h@gmx.de> | 2014-10-14 23:27:50 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2014-10-17 11:25:10 +0200 |
commit | 08c7018050e5af2c604c7b1ef35a66fb9f1171d5 (patch) | |
tree | 4be272f24d209f1f18ae8b72da649752c0eadaf9 /payloads | |
parent | cbe3c7050fa57f8cd2cd0cd6bc8e4ac4fce7d35c (diff) |
libpayload: Don't use default path for kconfig
libpayload's kconfig is totally incompatible with other kconfig versions,
today. Using other versions just doesn't work any more, so don't use the
overridable $(obj)/util/kconfig path. Choose a path that reflects the
incompatibility: $(obj)/util/lp_kconfig, instead.
This whole every-(sub)project-has-it's-own-patched-kconfig-version makes
me really, really sad :'-(
Change-Id: I964772f3323dc20aa7c1cc26a384a2fbca1dbb5e
Signed-off-by: Nico Huber <nico.h@gmx.de>
Reviewed-on: http://review.coreboot.org/7061
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'payloads')
-rw-r--r-- | payloads/libpayload/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/payloads/libpayload/Makefile b/payloads/libpayload/Makefile index d84b63b4b5..0b2f10991a 100644 --- a/payloads/libpayload/Makefile +++ b/payloads/libpayload/Makefile @@ -48,7 +48,7 @@ export src := src export srck := $(top)/util/kconfig export obj ?= build export objutil ?= $(obj)/util -export objk := $(objutil)/kconfig +export objk := $(objutil)/lp_kconfig export KCONFIG_AUTOHEADER := $(obj)/config.h @@ -272,7 +272,7 @@ printall: endif -$(shell mkdir -p $(obj) $(objutil)/kconfig/lxdialog $(additional-dirs) $(alldirs)) +$(shell mkdir -p $(obj) $(objk)/lxdialog $(additional-dirs) $(alldirs)) cscope: cscope -bR |