]> granicus.if.org Git - curl/commitdiff
Fixed a problem with m4 quoting in the OpenSSL configure check reported
authorDan Fandrich <dan@coneharvesters.com>
Wed, 4 Mar 2009 08:09:39 +0000 (08:09 +0000)
committerDan Fandrich <dan@coneharvesters.com>
Wed, 4 Mar 2009 08:09:39 +0000 (08:09 +0000)
by Daniel Johnson.

CHANGES
configure.ac

diff --git a/CHANGES b/CHANGES
index 4d9c5d4ae304e6247fb159b9cfab034837df36b8..8176b8a29501a7a97260b7f429b7bd3da44fdc95 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -6,6 +6,10 @@
 
                                   Changelog
 
+Daniel Fandrich (4 Mar 2009)
+- Fixed a problem with m4 quoting in the OpenSSL configure check reported
+  by Daniel Johnson.
+
 Daniel Stenberg (3 Mar 2009)
 - David James brought a patch that make libcurl close (all) dead connections
   whenever you attempt to open a new connection.
index f817991219f7cc414867ff92e5043c03607d56f0..58624a2dded8b5317a2ede54508b8456849cd491 100644 (file)
@@ -1171,7 +1171,7 @@ if test X"$OPT_SSL" != Xno; then
     PKGTEST="no"
     PREFIX_OPENSSL=$OPT_SSL
     LIB_OPENSSL="$PREFIX_OPENSSL/lib$libsuff"
-    if [ "$PREFIX_OPENSSL" != "/usr" ] ; then
+    if test "$PREFIX_OPENSSL" != "/usr" ; then
       LDFLAGS="$LDFLAGS -L$LIB_OPENSSL"
       CPPFLAGS="$CPPFLAGS -I$PREFIX_OPENSSL/include"
     fi