[Freeswitch-svn] [commit] r12175 - freeswitch/trunk/build
FreeSWITCH SVN
mrene at freeswitch.org
Thu Feb 19 20:38:54 PST 2009
Author: mrene
Date: Thu Feb 19 22:38:54 2009
New Revision: 12175
Log:
fix getlib.sh's curl/wget detection
Modified:
freeswitch/trunk/build/getlib.sh.in
Modified: freeswitch/trunk/build/getlib.sh.in
==============================================================================
--- freeswitch/trunk/build/getlib.sh.in (original)
+++ freeswitch/trunk/build/getlib.sh.in Thu Feb 19 22:38:54 2009
@@ -5,10 +5,10 @@
WGET=@WGET@
CURL=@CURL@
-if [ -f $WGET ] ; then
+if [ -f "$WGET" ] ; then
DOWNLOAD_CMD=$WGET
else
- if [ -f $CURL ] ; then
+ if [ -f "$CURL" ] ; then
DOWNLOAD_CMD="$CURL -O"
fi
fi
More information about the Freeswitch-svn
mailing list