From 8f186886aaaec7322f1aa4fa5e1e9c10d71460c7 Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Tue, 3 Jul 2001 02:27:17 +0000 Subject: Fixed quoting bug - shell programming sucks. (This used to be commit 60d42618416295a8fc25a461a8b4783bb219d6a7) --- source3/configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/configure.in') diff --git a/source3/configure.in b/source3/configure.in index 9f67e13ce43..02a1df7fc1b 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"; -- cgit