aboutsummaryrefslogtreecommitdiffstats
path: root/.travis-create-release.sh
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-03-08 11:49:26 +0100
committerRichard Levitte <levitte@openssl.org>2016-03-08 12:32:00 +0100
commit54bb8f74bd3931f801472e86c481c80f868c2b91 (patch)
tree116fa3c0f2d957cc32cdf126d3dbb102f2dc52a3 /.travis-create-release.sh
parent69633bb4c96b5b0168cd3ee4ea2f00821cb52162 (diff)
downloadopenssl-54bb8f74bd3931f801472e86c481c80f868c2b91.tar.gz
Fix configurations such as 'dist' and tar building
For config targets such as 'dist', which doesn't have a BASE template, we still need to have a default build scheme. Additionally, the unified Makefile template's target 'tar' wasn't quite as flexible as the unixmake one. Finally, .travis-create-release.sh can be somewhat simplified now that it builds with the unified build scheme. Reviewed-by: Matt Caswell <matt@openssl.org>
Diffstat (limited to '.travis-create-release.sh')
-rw-r--r--.travis-create-release.sh5
1 files changed, 2 insertions, 3 deletions
diff --git a/.travis-create-release.sh b/.travis-create-release.sh
index a153a928b8..08dcf18f40 100644
--- a/.travis-create-release.sh
+++ b/.travis-create-release.sh
@@ -5,8 +5,7 @@
./Configure dist
if [ "$1" == osx ]; then
make NAME='_srcdist' TARFLAGS='-n' TARFILE='_srcdist.tar' \
- TAR_COMMAND='$(TAR) $(TARFLAGS) -s "|^|$(NAME)/|" -T $(TARFILE).list -cvf -' \
- SHELL='sh -vx' tar
+ TAR_COMMAND='$(TAR) $(TARFLAGS) -cvf -' tar
else
- make TARFILE='_srcdist.tar' NAME='_srcdist' SHELL='sh -v' dist
+ make TARFILE='_srcdist.tar' NAME='_srcdist' dist
fi