Skip to content

Commit a76f203

Browse files
committed
fix tar unzip flag
1 parent 95c2e2a commit a76f203

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ fetch_externals: $(EXTERNALS)/pypy externals.fetched
4646
externals.fetched:
4747
echo https://github.com/pixie-lang/external-deps/releases/download/1.0/`uname -s`-`uname -m`.tar.bz2
4848
curl -L https://github.com/pixie-lang/external-deps/releases/download/1.0/`uname -s`-`uname -m`.tar.bz2 > /tmp/externals.tar.bz2
49-
tar -jxf /tmp/externals.tar.bz2 --strip-components=2
49+
tar -zxf /tmp/externals.tar.bz2 --strip-components=2
5050
touch externals.fetched
5151

5252
$(EXTERNALS):
@@ -57,7 +57,7 @@ $(EXTERNALS)/pypy: $(EXTERNALS)
5757
curl https://bitbucket.org/pypy/pypy/get/81254.tar.bz2 > pypy.tar.bz2; \
5858
mkdir pypy; \
5959
cd pypy; \
60-
tar -jxf ../pypy.tar.bz2 --strip-components=1
60+
tar -zxf ../pypy.tar.bz2 --strip-components=1
6161

6262
$(EXTERNALS)/re2: $(EXTERNALS)
6363
cd $(EXTERNALS) && \

0 commit comments

Comments
 (0)