summaryrefslogtreecommitdiffstatshomepage
path: root/unix/Makefile
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2017-05-26 18:12:30 +1000
committerDamien George <damien.p.george@gmail.com>2017-05-26 18:12:30 +1000
commitd77862279e4433d26e1507ef9df7d94fccb6ad0f (patch)
tree9e486d14f80273bd8b9d9e7fabba882e20dd6cab /unix/Makefile
parent011684bd4f92c545cb792b582d7556ab394e2cf0 (diff)
downloadmicropython-d77862279e4433d26e1507ef9df7d94fccb6ad0f.tar.gz
micropython-d77862279e4433d26e1507ef9df7d94fccb6ad0f.zip
unix/Makefile: Don't add frozen bytecode to minimal build.
Diffstat (limited to 'unix/Makefile')
-rw-r--r--unix/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/Makefile b/unix/Makefile
index 830f307424..837ddf2b78 100644
--- a/unix/Makefile
+++ b/unix/Makefile
@@ -211,7 +211,7 @@ fast:
# build a minimal interpreter
minimal:
$(MAKE) COPT="-Os -DNDEBUG" CFLAGS_EXTRA='-DMP_CONFIGFILE="<mpconfigport_minimal.h>"' \
- BUILD=build-minimal PROG=micropython_minimal FROZEN_DIR= \
+ BUILD=build-minimal PROG=micropython_minimal FROZEN_DIR= FROZEN_MPY_DIR= \
MICROPY_PY_BTREE=0 MICROPY_PY_FFI=0 MICROPY_PY_SOCKET=0 MICROPY_PY_THREAD=0 \
MICROPY_PY_TERMIOS=0 MICROPY_PY_USSL=0 \
MICROPY_USE_READLINE=0