aboutsummaryrefslogtreecommitdiffstats
path: root/macosx-setup.sh
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2014-10-31 00:36:39 -0700
committerGuy Harris <guy@alum.mit.edu>2014-10-31 07:37:41 +0000
commitd93bf88af02a5c9e52c06c1e86844c48b90f2b59 (patch)
tree5a61aa63098fdb06c73dd2906040179002c975bf /macosx-setup.sh
parent2717766a9a8e1eaa630df4e452a63d1af163a3e0 (diff)
The C-Ares "done" file should have a name beginning with cares-.
Fix a presumed copy-and-pasteo. Change-Id: I6953bfb46741923507bb58b4e48a72d92313e07c Reviewed-on: https://code.wireshark.org/review/5012 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'macosx-setup.sh')
-rwxr-xr-xmacosx-setup.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/macosx-setup.sh b/macosx-setup.sh
index a8a35fd4eb..9c00fbc81f 100755
--- a/macosx-setup.sh
+++ b/macosx-setup.sh
@@ -1360,7 +1360,7 @@ then
touch geoip-$GEOIP_VERSION-done
fi
-if [ "$CARES_VERSION" -a ! -f geoip-$CARES_VERSION-done ]
+if [ "$CARES_VERSION" -a ! -f cares-$CARES_VERSION-done ]
then
echo "Downloading, building, and installing C-Ares API:"
[ -f c-ares-$CARES_VERSION.tar.gz ] || curl -L -O http://c-ares.haxx.se/download/c-ares-$CARES_VERSION.tar.gz || exit 1
@@ -1370,7 +1370,7 @@ then
make $MAKE_BUILD_OPTS || exit 1
$DO_MAKE_INSTALL || exit 1
cd ..
- touch geoip-$CARES_VERSION-done
+ touch cares-$CARES_VERSION-done
fi
echo ""