Skip to content

Commit 31a95b6

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

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ $(EXTERNALS)/re2: $(EXTERNALS)
6464
curl -sL https://github.com/google/re2/archive/2016-02-01.tar.gz > re2.tar.gz && \
6565
mkdir -p re2 && \
6666
cd re2 && \
67-
tar -jxf ../re2.tar.gz --strip-components=1
67+
tar -zxf ../re2.tar.gz --strip-components=1
6868

6969
$(EXTERNALS)/re2/obj/libre2.a: $(EXTERNALS)/re2
7070
cd $(EXTERNALS)/re2 && make
@@ -74,7 +74,7 @@ $(EXTERNALS)/cre2:
7474
curl -sL https://github.com/keymone/cre2/archive/f1157647f9ca3ef11fd6447433f36e7c7bd64d09.tar.gz > cre2.tar.xz && \
7575
mkdir -p cre2 && \
7676
cd cre2 && \
77-
tar -jxf ../cre2.tar.xz --strip-components=1
77+
tar -zxf ../cre2.tar.xz --strip-components=1
7878

7979
$(EXTERNALS)/cre2/build/.libs/libcre2.a: $(EXTERNALS)/cre2
8080
cd $(EXTERNALS)/cre2 && \

0 commit comments

Comments
 (0)