Skip to content
Snippets Groups Projects
Commit edef367e authored by Yang Tse's avatar Yang Tse
Browse files

Missing double quotes

parent 08c5e2a1
No related branches found
No related tags found
No related merge requests found
......@@ -513,7 +513,7 @@ AC_DEFUN([CURL_CHECK_LIBS_WINLDAP], [
done
])
#
curl_cv_save_LIBS=$LIBS
curl_cv_save_LIBS="$LIBS"
curl_cv_ldap_LIBS="unknown"
#
for x_nlibs in '' "$u_libs" \
......@@ -551,7 +551,7 @@ AC_DEFUN([CURL_CHECK_LIBS_WINLDAP], [
])
done
#
LIBS=$curl_cv_save_LIBS
LIBS="$curl_cv_save_LIBS"
#
case X-"$curl_cv_ldap_LIBS" in
X-unknown)
......@@ -606,7 +606,7 @@ AC_DEFUN([CURL_CHECK_LIBS_LDAP], [
done
])
#
curl_cv_save_LIBS=$LIBS
curl_cv_save_LIBS="$LIBS"
curl_cv_ldap_LIBS="unknown"
#
for x_nlibs in '' "$u_libs" \
......@@ -658,7 +658,7 @@ AC_DEFUN([CURL_CHECK_LIBS_LDAP], [
])
done
#
LIBS=$curl_cv_save_LIBS
LIBS="$curl_cv_save_LIBS"
#
case X-"$curl_cv_ldap_LIBS" in
X-unknown)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment