]> rtime.felk.cvut.cz Git - coffee/buildroot.git/commitdiff
Makefile: generate wrapper makefile when running make without a .config
authorPeter Korsgaard <peter@korsgaard.com>
Mon, 3 Jul 2017 10:24:05 +0000 (12:24 +0200)
committerPeter Korsgaard <peter@korsgaard.com>
Mon, 3 Jul 2017 13:02:10 +0000 (15:02 +0200)
The recent change to error out instead of running menuconfig when no .config
is available broke an existing use case:

make O=output-foo; cd output-foo; br-init-conf (or similar to get a sensible .config); make

As there is no wrapper makefile in output-foo.

Fix it by ensuring the wrapper gets created if needed.

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Makefile

index 36231fa9d6088089593b72202737a04291aaf1df..bfe6fa3e0763923a92f1ecd7bcbb2660e3c12718 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -816,7 +816,7 @@ else # ifeq ($(BR2_HAVE_DOT_CONFIG),y)
 # rule for it.
 # Also for 'all' we error out and ask the user to configure first.
 .PHONY: linux toolchain
-linux toolchain all:
+linux toolchain all: outputmakefile
        $(error Please configure Buildroot first (e.g. "make menuconfig"))
        @exit 1