Skip to content

Commit

Permalink
Remove the -n tar flag from osx dist creation
Browse files Browse the repository at this point in the history
With the unified build scheme, tar MUST recurse, or the tarball will
be empty.

Reviewed-by: Viktor Dukhovni <viktor@openssl.org>
  • Loading branch information
levitte committed Mar 8, 2016
1 parent 8732645 commit c7f1fa8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .travis-create-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

./Configure dist
if [ "$1" == osx ]; then
make NAME='_srcdist' TARFLAGS='-n' TARFILE='_srcdist.tar' \
TAR_COMMAND='$(TAR) $(TARFLAGS) -cvf -' tar
make NAME='_srcdist' TARFILE='_srcdist.tar' \
TAR_COMMAND='$(TAR) $(TARFLAGS) -cvf -' tar
else
make TARFILE='_srcdist.tar' NAME='_srcdist' dist
fi

0 comments on commit c7f1fa8

Please sign in to comment.