Skip to content

Commit 20be9a8

Browse files
committed
Fix NaCl build: tar was called incorrectly.
tar -jxf expects a file.
1 parent 8f1dbaa commit 20be9a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

other/travis/autotools-linux-install

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
# Also install vanilla NaCl
66
[ -f $CACHE_DIR/lib/amd64/libnacl.a ] || {
7-
curl https://hyperelliptic.org/nacl/nacl-20110221.tar.bz2 | tar -jxf
7+
curl https://hyperelliptic.org/nacl/nacl-20110221.tar.bz2 | tar jx
88
cd nacl-20110221 # pushd
99
"./do"
1010
# "make install"

0 commit comments

Comments
 (0)