From 8b8b2f12e479d07ae95c86b55fb37839cfd56bc3 Mon Sep 17 00:00:00 2001 From: Roland Dobai Date: Wed, 21 Aug 2019 16:45:01 +0200 Subject: [PATCH] Fix sdkconfig.rename paths for confgen.py in MSYS Closes https://github.com/espressif/esp-idf/issues/3950 --- make/project_config.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/make/project_config.mk b/make/project_config.mk index 7eede5ebb..1a4e74126 100644 --- a/make/project_config.mk +++ b/make/project_config.mk @@ -9,6 +9,7 @@ ifeq ($(OS),Windows_NT) # kconfiglib requires Windows-style paths for kconfig files COMPONENT_KCONFIGS := $(shell cygpath -w $(COMPONENT_KCONFIGS)) COMPONENT_KCONFIGS_PROJBUILD := $(shell cygpath -w $(COMPONENT_KCONFIGS_PROJBUILD)) +COMPONENT_SDKCONFIG_RENAMES := $(shell cygpath -w $(COMPONENT_SDKCONFIG_RENAMES)) endif #For doing make menuconfig etc