mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-06 14:14:33 +02:00
make: Fix quoting when flashing port is set via sdkconfig file
Regression in 862fa815ff
Closes https://github.com/espressif/esp-idf/issues/5124
Closes https://github.com/espressif/esp-idf/issues/5104
This commit is contained in:
committed by
Angus Gratton
parent
445e847274
commit
90b3676280
@@ -1,6 +1,6 @@
|
|||||||
# Component support for esptool.py. Doesn't do much by itself,
|
# Component support for esptool.py. Doesn't do much by itself,
|
||||||
# components have their own flash targets that can use these variables.
|
# 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)
|
ESPBAUD ?= $(CONFIG_ESPTOOLPY_BAUD)
|
||||||
ESPFLASHMODE ?= $(CONFIG_ESPTOOLPY_FLASHMODE)
|
ESPFLASHMODE ?= $(CONFIG_ESPTOOLPY_FLASHMODE)
|
||||||
ESPFLASHFREQ ?= $(CONFIG_ESPTOOLPY_FLASHFREQ)
|
ESPFLASHFREQ ?= $(CONFIG_ESPTOOLPY_FLASHFREQ)
|
||||||
|
Reference in New Issue
Block a user