aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/kconfig/Makefile
diff options
context:
space:
mode:
authorMasahiro Yamada <masahiroy@kernel.org>2021-02-21 22:03:17 +0900
committerMasahiro Yamada <masahiroy@kernel.org>2021-02-24 15:12:06 +0900
commitae8da72bde7a3fb5c756fa34506196fe190c3204 (patch)
tree199670276a9b074801c410a5bdbad054f6e5f182 /scripts/kconfig/Makefile
parentkconfig: fix 'invalid option' for help option (diff)
downloadlinux-dev-ae8da72bde7a3fb5c756fa34506196fe190c3204.tar.xz
linux-dev-ae8da72bde7a3fb5c756fa34506196fe190c3204.zip
kconfig: omit --oldaskconfig option for 'make config'
scripts/kconfig/conf.c line 39 defines the default of input_mode as oldaskconfig. Hence, 'make config' works in the same way even without the --oldaskconfig option given. Note this in the help message. This will be helpful to unify build rules in Makefile in the next commit. Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Diffstat (limited to 'scripts/kconfig/Makefile')
-rw-r--r--scripts/kconfig/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/kconfig/Makefile b/scripts/kconfig/Makefile
index 2c40e68853dd..5180a71c931f 100644
--- a/scripts/kconfig/Makefile
+++ b/scripts/kconfig/Makefile
@@ -29,7 +29,7 @@ menuconfig: $(obj)/mconf
$(Q)$< $(silent) $(Kconfig)
config: $(obj)/conf
- $(Q)$< $(silent) --oldaskconfig $(Kconfig)
+ $(Q)$< $(silent) $(Kconfig)
nconfig: $(obj)/nconf
$(Q)$< $(silent) $(Kconfig)