diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2015-10-31 19:35:10 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2015-10-31 19:35:10 +0300 |
commit | 0ec51441de4db3fc776b1f2013005391caa910d3 (patch) | |
tree | c2212c4c0ab2898a793e9e806c41170ef4e9e2e1 /esp8266 | |
parent | 731f359292c0e2630873df1a19c5baac7287024f (diff) | |
download | micropython-0ec51441de4db3fc776b1f2013005391caa910d3.tar.gz micropython-0ec51441de4db3fc776b1f2013005391caa910d3.zip |
stmhal: pyexec.c is common module, move to lib/utils/ .
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 7db5a76d35..d930a25559 100644 --- a/esp8266/Makefile +++ b/esp8266/Makefile @@ -68,7 +68,6 @@ SRC_C = \ STM_SRC_C = $(addprefix stmhal/,\ printf.c \ - pyexec.c \ pybstdio.c \ ) @@ -77,6 +76,7 @@ LIB_SRC_C = $(addprefix lib/,\ mp-readline/readline.c \ netutils/netutils.c \ timeutils/timeutils.c \ + utils/pyexec.c \ ) SRC_S = \ |