diff options
author | Rob Austein <sra@hactrn.net> | 2015-07-21 16:49:47 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2015-07-21 16:49:47 +0000 |
commit | 28f0a684e348c4d8e3e83827f4367aaa4f21522f (patch) | |
tree | e38ebc9aa2355dfb946f62902a4bb8388051c5d0 /openssl/update-snapshot.sh | |
parent | d9bd71463fc2d47503c3300b3a207a7b8124d8b6 (diff) | |
parent | 64011cf6642dae30517ade092c5830bac81ebc8b (diff) |
Merge FreeBSD ports and OpenSSL changes from last six months. Still
some merge conflicts in other parts of the tree to sort out.
svn path=/branches/tk705/; revision=6082
Diffstat (limited to 'openssl/update-snapshot.sh')
-rwxr-xr-x | openssl/update-snapshot.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/openssl/update-snapshot.sh b/openssl/update-snapshot.sh index eb8c45d8..1ff08bbb 100755 --- a/openssl/update-snapshot.sh +++ b/openssl/update-snapshot.sh @@ -6,7 +6,7 @@ #version="1.0.0-stable-SNAP-$(date +%Y%m%d)" -version="1.0.1l" +version="1.0.2d" tarball="openssl-${version}.tar.gz" @@ -15,7 +15,7 @@ case $version in *) directory=source;; esac -/usr/bin/fetch -m -p "ftp://ftp.openssl.org/${directory}/${tarball}" || exit +/bin/test -f "${tarball}" || /usr/bin/fetch -m -p "ftp://ftp.openssl.org/${directory}/${tarball}" || exit /bin/rm -f openssl |