From: Anton Maklakov Date: Wed, 26 Apr 2017 10:26:21 +0000 (+0800) Subject: build: Fix warning if the auto.conf does not exist X-Git-Tag: v2.1-rc1~150^2~4 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=14859cb0fe283f1bd0a8f905a58b0669681a6a3e;p=esp-idf build: Fix warning if the auto.conf does not exist esp-idf/make/common.mk:10 some/include/config/auto.conf: No such file or directory --- diff --git a/make/common.mk b/make/common.mk index 41a87b3a64..24aebb4cce 100644 --- a/make/common.mk +++ b/make/common.mk @@ -7,7 +7,7 @@ # (Note that we only rebuild this makefile automatically for some # targets, see project_config.mk for details.) SDKCONFIG_MAKEFILE ?= $(abspath $(BUILD_DIR_BASE)/include/config/auto.conf) -include $(SDKCONFIG_MAKEFILE) +-include $(SDKCONFIG_MAKEFILE) export SDKCONFIG_MAKEFILE # sub-makes (like bootloader) will reuse this path # BATCH_BUILD flag disables interactive terminal features, defaults to verbose build