Fixed a problem with m4 quoting in the OpenSSL configure check reported

by Daniel Johnson.
This commit is contained in:
Dan Fandrich
2009-03-04 08:09:39 +00:00
parent 49c6d7e32d
commit b98e0aa09b
2 changed files with 5 additions and 1 deletions

View 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