summaryrefslogtreecommitdiffstatshomepage
path: root/esp8266
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2016-09-05 12:35:05 +1000
committerDamien George <damien.p.george@gmail.com>2016-09-05 12:35:05 +1000
commit9526e24234bba06fcbf42c590743087bc8527319 (patch)
tree5f26764d21a4524b178ae644fc6f59092e8bcb37 /esp8266
parente2ac8bb3f14b076a29244022865e3b47c6c0800a (diff)
downloadmicropython-9526e24234bba06fcbf42c590743087bc8527319.tar.gz
micropython-9526e24234bba06fcbf42c590743087bc8527319.zip
unix,stmhal,esp8266: When find'ing frozen files follow symbolic links.
It's useful to be able to use symbolic links to add files and directories to the set of scripts to be frozen.
Diffstat (limited to 'esp8266')
-rw-r--r--esp8266/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/esp8266/Makefile b/esp8266/Makefile
index 1dfcec809c..433b41ecfd 100644
--- a/esp8266/Makefile
+++ b/esp8266/Makefile
@@ -139,7 +139,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 -L $(FROZEN_MPY_DIR) -type f -name '*.py')
FROZEN_MPY_MPY_FILES := $(addprefix $(BUILD)/,$(FROZEN_MPY_PY_FILES:.py=.mpy))
OBJ =