Skip to content
Snippets Groups Projects
Commit 331c224e authored by Jim Mussared's avatar Jim Mussared Committed by Damien George
Browse files

esp32/Makefile: Fix path expansion for ESPIDF_DRIVER_O.

It was using subst to s/.c/.o/ which changed .c anywhere in the path.
parent 9da46a98
No related branches found
No related tags found
No related merge requests found
......@@ -257,7 +257,7 @@ $(HEADER_BUILD)/qstrdefs.generated.h: $(SDKCONFIG_H)
################################################################################
# List of object files from the ESP32 IDF components
ESPIDF_DRIVER_O = $(subst .c,.o,$(wildcard $(ESPCOMP)/driver/*.c))
ESPIDF_DRIVER_O = $(patsubst %.c,%.o,$(wildcard $(ESPCOMP)/driver/*.c))
ESPIDF_EFUSE_O = $(addprefix $(ESPCOMP)/efuse/,\
esp32/esp_efuse_table.o \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment