From: Arnout Vandecappelle Date: Sat, 1 Jul 2017 08:24:46 +0000 (+0200) Subject: Makefile: don't run "menuconfig" automatically X-Git-Tag: 2017.08-rc1~810 X-Git-Url: http://rtime.felk.cvut.cz/gitweb/coffee/buildroot.git/commitdiff_plain/c3493069f28368739a7ccf670bd2eecbb2524d96 Makefile: don't run "menuconfig" automatically Since forever, we run 'menuconfig' automatically on an unconfigured tree. However, this does not help users that much: - If they read the documentation, they should already know to run make menuconfig first. - If they haven't read the documentation, dropping them in menuconfig isn't very helpful. - It's a likely that the user didn't intend to be in an unconfigured tree (e.g. wrong O= specified), so starting menuconfig (and polluting this wrong O= directory) is not very helpful. - It's possible that the user really doesn't want menuconfig, but instead needs xconfig, or some defconfig, or ... So, instead of trying to guess what the user needs, print an error and let the user decide what to do next. Signed-off-by: Arnout Vandecappelle (Essensium/Mind) Signed-off-by: Thomas Petazzoni --- diff --git a/Makefile b/Makefile index 470aa837ce..811158295a 100644 --- a/Makefile +++ b/Makefile @@ -811,13 +811,12 @@ check-dependencies: else # ifeq ($(BR2_HAVE_DOT_CONFIG),y) -all: menuconfig - # Some subdirectories are also package names. To avoid that "make linux" # on an unconfigured tree produces "Nothing to be done", add an explicit # rule for it. +# Also for 'all' we error out and ask the user to configure first. .PHONY: linux toolchain -linux toolchain: +linux toolchain all: $(error Please configure Buildroot first (e.g. "make menuconfig")) @exit 1