Browse Source

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

pull/5066/head
Jim Mussared 5 years ago
committed by Damien George
parent
commit
50482cdc0c
  1. 2
      ports/esp32/Makefile

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

Loading…
Cancel
Save