Merge branch 'bugfix/make_clean_kconfig' into 'master'

Don't try to clean the old kconfig tools on Unix

See merge request espressif/esp-idf!6855
This commit is contained in:
Angus Gratton 2019-12-12 06:32:57 +08:00
commit 82d9a7b6bf

View file

@ -173,6 +173,8 @@ endif
.PHONY: config-clean defconfig menuconfig
config-clean:
$(summary) RM CONFIG
ifeq ($(OS),Windows_NT)
MAKEFLAGS="" $(MAKE) -C $(KCONFIG_TOOL_DIR) clean
endif
rm -rf $(BUILD_DIR_BASE)/include/config $(BUILD_DIR_BASE)/include/sdkconfig.h \
$(COMPONENT_KCONFIGS_SOURCE_FILE) $(COMPONENT_KCONFIGS_PROJBUILD_SOURCE_FILE)