From 9c04ef2a6772cabbd92abe6c826b56cc04a1a7b8 Mon Sep 17 00:00:00 2001 From: Damien George Date: Wed, 31 Aug 2016 15:12:57 +1000 Subject: unix,stmhal,esp8266: When find'ing frozen files don't use extra slash. This extra forward slash for the starting-point directory is unnecessary and leads to additional slashes on Max OS X which mean that the frozen files cannot be imported. Fixes #2374. --- esp8266/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'esp8266') diff --git a/esp8266/Makefile b/esp8266/Makefile index 7da83f1aa..278651038 100644 --- a/esp8266/Makefile +++ b/esp8266/Makefile @@ -141,7 +141,7 @@ DRIVERS_SRC_C = $(addprefix drivers/,\ SRC_S = \ gchelper.s \ -FROZEN_MPY_PY_FILES := $(shell find $(FROZEN_MPY_DIR)/ -type f -name '*.py') +FROZEN_MPY_PY_FILES := $(shell find $(FROZEN_MPY_DIR) -type f -name '*.py') FROZEN_MPY_MPY_FILES := $(addprefix $(BUILD)/,$(FROZEN_MPY_PY_FILES:.py=.mpy)) OBJ = -- cgit v1.2.3