Skip to content

Commit

Permalink
Missing double quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
yangtse committed Oct 24, 2007
1 parent 08c5e2a commit edef367
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions acinclude.m4
Expand Up @@ -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" \
Expand Down Expand Up @@ -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)
Expand Down Expand Up @@ -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" \
Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit edef367

Please sign in to comment.