diff options
author | Peter Korsgaard <peter@korsgaard.com> | 2017-07-03 12:24:05 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2017-07-03 15:02:10 +0200 |
commit | 51825df3a184cad0f5bccb6a18b9d6197855cab6 (patch) | |
tree | cab2b488c35349506a3214513d057603e283eaaf | |
parent | 56ed4a1ef20aea9bbf46c8c17cb275e3173d5acf (diff) | |
download | buildroot-51825df3a184cad0f5bccb6a18b9d6197855cab6.tar.gz buildroot-51825df3a184cad0f5bccb6a18b9d6197855cab6.zip |
Makefile: generate wrapper makefile when running make without a .config
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>
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |