From: Rasmus Lerdorf Date: Wed, 9 Feb 2005 16:23:31 +0000 (+0000) Subject: MFH fix for bug #31901 X-Git-Tag: php-5.0.4RC1~185 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=85cab5a8382149110f0e09fbcb4748157a2938b6;p=php MFH fix for bug #31901 --- diff --git a/ext/curl/config.m4 b/ext/curl/config.m4 index 1e683072c5..0bb96eb353 100644 --- a/ext/curl/config.m4 +++ b/ext/curl/config.m4 @@ -32,10 +32,10 @@ if test "$PHP_CURL" != "no"; then CURL_CONFIG="curl-config" AC_MSG_CHECKING(for cURL 7.10.5 or greater) - if ${CURL_DIR}/bin/curl-config --libs print > /dev/null 2>&1; then + if ${CURL_DIR}/bin/curl-config --libs > /dev/null 2>&1; then CURL_CONFIG=${CURL_DIR}/bin/curl-config else - if ${CURL_DIR}/curl-config --libs print > /dev/null 2>&1; then + if ${CURL_DIR}/curl-config --libs > /dev/null 2>&1; then CURL_CONFIG=${CURL_DIR}/curl-config fi fi