fix getlib.sh's curl/wget detection

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@12175 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Mathieu Rene 2009-02-20 04:38:54 +00:00
parent 68743f3042
commit 69fe38ad79
1 changed files with 2 additions and 2 deletions

View File

@ -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