diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2015-06-03 01:55:54 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2015-06-03 01:55:54 +0300 |
commit | a546acda8c4c1342ee5f0e50733915e15a775756 (patch) | |
tree | a8c44af024caa052daa081e5c08a0bc05ae5f0d3 /unix | |
parent | a32538bb665bf521441f91a1043cd5eb56cb06e6 (diff) | |
download | micropython-a546acda8c4c1342ee5f0e50733915e15a775756.tar.gz micropython-a546acda8c4c1342ee5f0e50733915e15a775756.zip |
unix: Uncompress upip tarball to build directory.
Diffstat (limited to 'unix')
-rw-r--r-- | unix/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/Makefile b/unix/Makefile index af85a36e3b..f765b60115 100644 --- a/unix/Makefile +++ b/unix/Makefile @@ -170,7 +170,7 @@ UPIP_TARBALL := $(shell ls -1 -v ../tools/micropython-upip-*.tar.gz | tail -n1) frozen_upip/upip.py: $(UPIP_TARBALL) $(Q)rm -rf micropython-upip-* $(ECHO) "MISC Preparing upip as frozen module" - $(Q)tar xfz $^ + $(Q)tar -C $(BUILD) -xz -f $^ $(Q)rm -rf frozen_upip $(Q)mkdir -p frozen_upip - $(Q)cp micropython-upip-*/upip*.py frozen_upip/ + $(Q)cp $(BUILD)/micropython-upip-*/upip*.py frozen_upip/ |