esp32/Makefile: Fix subst->patsubst in ESPIDF_BOOTLOADER_SUPPORT_O.

pull/1/head
Jim Mussared 2019-09-03 12:27:01 +10:00 committed by Damien George
parent b29fae0c56
commit 50482cdc0c
1 changed files with 1 additions and 1 deletions

View File

@ -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)))