diff options
author | Tim Potter <tpot@samba.org> | 2001-07-03 02:27:17 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2001-07-03 02:27:17 +0000 |
commit | 8f186886aaaec7322f1aa4fa5e1e9c10d71460c7 (patch) | |
tree | 63f5ab69e9c6a7652b8e9b4749b1796c350c07f2 | |
parent | eae35e8f00ad6d83afac6b06e0f83500e4633391 (diff) | |
download | samba-8f186886aaaec7322f1aa4fa5e1e9c10d71460c7.tar.gz samba-8f186886aaaec7322f1aa4fa5e1e9c10d71460c7.tar.bz2 samba-8f186886aaaec7322f1aa4fa5e1e9c10d71460c7.zip |
Fixed quoting bug - shell programming sucks.
(This used to be commit 60d42618416295a8fc25a461a8b4783bb219d6a7)
-rw-r--r-- | source3/configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/configure.in b/source3/configure.in index 9f67e13ce4..02a1df7fc1 100644 --- a/source3/configure.in +++ b/source3/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"; |