diff options
author | Damien George <damien.p.george@gmail.com> | 2016-08-31 15:12:57 +1000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2016-08-31 15:12:57 +1000 |
commit | 9c04ef2a6772cabbd92abe6c826b56cc04a1a7b8 (patch) | |
tree | cabc79704528f94c0feea1b14bae4a13781f9f75 /esp8266 | |
parent | 1f61fe07a2bca5374fdb402a41785a81b193f5ed (diff) | |
download | micropython-9c04ef2a6772cabbd92abe6c826b56cc04a1a7b8.tar.gz micropython-9c04ef2a6772cabbd92abe6c826b56cc04a1a7b8.zip |
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.
Diffstat (limited to 'esp8266')
-rw-r--r-- | esp8266/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/esp8266/Makefile b/esp8266/Makefile index 7da83f1aaf..2786510388 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 = |