diff options
author | Jim Mussared <jim.mussared@gmail.com> | 2019-09-03 12:27:01 +1000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2019-09-03 23:21:50 +1000 |
commit | 50482cdc0c50c53f43953cf101e586c34f5588ad (patch) | |
tree | 5750d698c20aa041f7b31ffd3f49acb32cdab6c7 | |
parent | b29fae0c564bae271f3659563a2a61230dab5def (diff) |
esp32/Makefile: Fix subst->patsubst in ESPIDF_BOOTLOADER_SUPPORT_O.
-rw-r--r-- | ports/esp32/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ports/esp32/Makefile b/ports/esp32/Makefile index 06cb553f4..cf1b24bfc 100644 --- a/ports/esp32/Makefile +++ b/ports/esp32/Makefile @@ -290,7 +290,7 @@ $(HEADER_BUILD)/qstrdefs.generated.h: $(SDKCONFIG_H) $(BOARD_DIR)/mpconfigboard. ################################################################################ # List of object files from the ESP32 IDF components -ESPIDF_BOOTLOADER_SUPPORT_O = $(subst .c,.o,\ +ESPIDF_BOOTLOADER_SUPPORT_O = $(patsubst %.c,%.o,\ $(filter-out $(ESPCOMP)/bootloader_support/src/bootloader_init.c,\ $(wildcard $(ESPCOMP)/bootloader_support/src/*.c))) |