diff options
author | don bright <hugh.m.bright@gmail.com> | 2012-12-21 00:24:06 (GMT) |
---|---|---|
committer | don bright <hugh.m.bright@gmail.com> | 2012-12-21 00:24:06 (GMT) |
commit | ced98a72c061a9b095f72ece253fcc78ebabee08 (patch) | |
tree | 7d46e94d08912f535d4e045f24eb2066f63ee776 /scripts/uni-build-dependencies.sh | |
parent | 596fe6271f316f83239d4466eca66182da2948f2 (diff) |
fix bug detecting if CGAL was already downloaded. simplify some wording
Diffstat (limited to 'scripts/uni-build-dependencies.sh')
-rwxr-xr-x | scripts/uni-build-dependencies.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/uni-build-dependencies.sh b/scripts/uni-build-dependencies.sh index 804eaa5..0a16886 100755 --- a/scripts/uni-build-dependencies.sh +++ b/scripts/uni-build-dependencies.sh @@ -145,7 +145,7 @@ build_cgal() echo "Building CGAL" $version "..." cd $BASEDIR/src rm -rf CGAL-$version - if [ ! -f CGAL-$version.tar.gz ]; then + if [ ! -f CGAL-$version.tar.* ]; then #4.0.2 curl --insecure -O https://gforge.inria.fr/frs/download.php/31174/CGAL-$version.tar.bz2 # 4.0 curl --insecure -O https://gforge.inria.fr/frs/download.php/30387/CGAL-$version.tar.gz |