summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Traut <manut@linutronix.de>2018-10-30 13:08:47 +0100
committerJohn Ogness <john.ogness@linutronix.de>2018-10-30 23:23:06 +0100
commit10016deba10397bbe743ba80e602a9823483a709 (patch)
tree678d4f3fd1d6d01f343dd2706125cafa21202e21
parentad124bf5e0a2afd92b92d06fcf98ba8def955478 (diff)
build kconf with mconf for 'make menuconfig'
menuconfig needs mconf. If 'libncurses5-dev' is not installed, kconfig will be silently built without mconf and 'make menuconfig' can't be executed. If hard enabling the feature a more useful error message, complaining about not install ncurses headers, is shown. Signed-off-by: Manuel Traut <manut@linutronix.de>
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 7067096..2319e3c 100644
--- a/Makefile
+++ b/Makefile
@@ -95,7 +95,7 @@ endif
$(Q)$(foreach dir,$(PATHS),$(MODMK) -C $(dir) build;)
$(KMCONFIG):
- cd kconfig-frontends/ && ./configure && make
+ cd kconfig-frontends/ && ./configure --enable-mconf && make
$(KCONFIG):
cd kconfig-frontends/ && ./configure && make