summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2001-07-03 02:27:17 +0000
committerTim Potter <tpot@samba.org>2001-07-03 02:27:17 +0000
commit60d42618416295a8fc25a461a8b4783bb219d6a7 (patch)
tree1db07265981da81558a1ec97e5a813b5c7a71e24
parent90985da62f733bed550ef326359bdbb8631ea554 (diff)
downloadsamba-60d42618416295a8fc25a461a8b4783bb219d6a7.tar.gz
samba-60d42618416295a8fc25a461a8b4783bb219d6a7.tar.xz
samba-60d42618416295a8fc25a461a8b4783bb219d6a7.zip
Fixed quoting bug - shell programming sucks.
-rw-r--r--source/configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/configure.in b/source/configure.in
index 9f67e13ce43..02a1df7fc1b 100644
--- a/source/configure.in
+++ b/source/configure.in
@@ -1612,7 +1612,7 @@ AC_ARG_WITH(pam_smbpass,
###############################################
# test for where we get crypt() from, but only
# if not using PAM
-if test $with_pam != yes; then
+if test "$with_pam" != yes; then
AC_CHECK_FUNCS(crypt)
if test x"$ac_cv_func_crypt" = x"no"; then
AC_CHECK_LIB(crypt, crypt, [LIBS="$LIBS -lcrypt";