From 14859cb0fe283f1bd0a8f905a58b0669681a6a3e Mon Sep 17 00:00:00 2001 From: Anton Maklakov Date: Wed, 26 Apr 2017 18:26:21 +0800 Subject: [PATCH] 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 --- make/common.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.40.0