diff options
author | Tim Potter <tpot@samba.org> | 2006-04-26 19:15:11 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:16:32 -0500 |
commit | 11cadb6f4712bd01ad48e3e39e895c2a9e1bbc38 (patch) | |
tree | a9d26f6bcb7e5d9f98d36e4b30644293ac7dd8f7 /source3 | |
parent | 0ec947bf1a661ac275fd6bd0aa96b6982f50dab3 (diff) | |
download | samba-11cadb6f4712bd01ad48e3e39e895c2a9e1bbc38.tar.gz samba-11cadb6f4712bd01ad48e3e39e895c2a9e1bbc38.tar.bz2 samba-11cadb6f4712bd01ad48e3e39e895c2a9e1bbc38.zip |
r15289: Put references to $PICFLAGS in quotes. Fixes #3725.
(This used to be commit 2aad5e915c03ec932feb1bc9e1dae938fa3011a2)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/configure.in b/source3/configure.in index d700740c0d..cf079800fb 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -2913,7 +2913,7 @@ AC_ARG_WITH(smbwrapper, # Conditions under which smbwrapper should not be built. - if test x$PICFLAGS = x; then + if test x"$PICFLAGS" = x; then echo No support for PIC code - disabling smbwrapper and smbsh WRAPPROG="" WRAP="" @@ -3862,7 +3862,7 @@ AC_ARG_WITH(pam_smbpass, # Conditions under which pam_smbpass should not be built. - if test x$PICFLAGS = x; then + if test x"$PICFLAGS" = x; then AC_MSG_ERROR([No support for PIC code]) elif test x"$ac_cv_header_security_pam_appl_h" = x"no"; then AC_MSG_ERROR([No security/pam_appl.h found]) |