From 90b3676280ee267ef692f94d9771de8fe3ad0e04 Mon Sep 17 00:00:00 2001 From: Angus Gratton Date: Wed, 15 Apr 2020 15:30:29 +1000 Subject: [PATCH] make: Fix quoting when flashing port is set via sdkconfig file Regression in 862fa815ff1ff79481ef113a9af7d9092e6f3583 Closes https://github.com/espressif/esp-idf/issues/5124 Closes https://github.com/espressif/esp-idf/issues/5104 --- components/esptool_py/Makefile.projbuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/esptool_py/Makefile.projbuild b/components/esptool_py/Makefile.projbuild index 07dab73f55..c2d047b03d 100644 --- a/components/esptool_py/Makefile.projbuild +++ b/components/esptool_py/Makefile.projbuild @@ -1,6 +1,6 @@ # Component support for esptool.py. Doesn't do much by itself, # components have their own flash targets that can use these variables. -ESPPORT ?= $(CONFIG_ESPTOOLPY_PORT) +ESPPORT ?= $(call dequote,$(CONFIG_ESPTOOLPY_PORT)) ESPBAUD ?= $(CONFIG_ESPTOOLPY_BAUD) ESPFLASHMODE ?= $(CONFIG_ESPTOOLPY_FLASHMODE) ESPFLASHFREQ ?= $(CONFIG_ESPTOOLPY_FLASHFREQ)