]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
fix getlib.sh's curl/wget detection
authorMathieu Rene <mrene@avgs.ca>
Fri, 20 Feb 2009 04:38:54 +0000 (04:38 +0000)
committerMathieu Rene <mrene@avgs.ca>
Fri, 20 Feb 2009 04:38:54 +0000 (04:38 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@12175 d0543943-73ff-0310-b7d9-9358b9ac24b2

build/getlib.sh.in

index 6ff194dcebbc6101e483083669b79a1a9225da56..db10f6726c50f561faf37dcf8e5868f4f47887ce 100755 (executable)
@@ -5,10 +5,10 @@ ZCAT=@ZCAT@
 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