Skip to content

Commit

Permalink
fix tar unzip flag
Browse files Browse the repository at this point in the history
  • Loading branch information
mks-m committed Feb 18, 2016
1 parent 95c2e2a commit 31a95b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ $(EXTERNALS)/re2: $(EXTERNALS)
curl -sL https://github.com/google/re2/archive/2016-02-01.tar.gz > re2.tar.gz && \
mkdir -p re2 && \
cd re2 && \
tar -jxf ../re2.tar.gz --strip-components=1
tar -zxf ../re2.tar.gz --strip-components=1

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

$(EXTERNALS)/cre2/build/.libs/libcre2.a: $(EXTERNALS)/cre2
cd $(EXTERNALS)/cre2 && \
Expand Down

0 comments on commit 31a95b6

Please sign in to comment.