diff options
author | Stefan Metzmacher <metze@samba.org> | 2006-10-05 07:20:46 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:15:10 -0500 |
commit | 4bc71f13c87e2f719e0ea27ece98ffbcbd1712d9 (patch) | |
tree | 99678e51fba1af4514bcec43aa20dfed757cb764 | |
parent | 5b77d0a856c398105568e8e6c22a1a398eea8e4a (diff) | |
download | samba-4bc71f13c87e2f719e0ea27ece98ffbcbd1712d9.tar.gz samba-4bc71f13c87e2f719e0ea27ece98ffbcbd1712d9.tar.bz2 samba-4bc71f13c87e2f719e0ea27ece98ffbcbd1712d9.zip |
r19086: fix --disable-pie together with -C
metze
(This used to be commit 035579b62c76e370356cb4a6ba5f652ac68b5862)
-rw-r--r-- | source3/configure.in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/source3/configure.in b/source3/configure.in index db92a8393e..c8ee2a9b09 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -352,11 +352,11 @@ EOF samba_cv_fpie=no fi rm -f conftest*]) -fi -if test x"${samba_cv_fpie}" = x"yes" -then - PIE_CFLAGS="-fPIE" - PIE_LDFLAGS="-pie" + if test x"${samba_cv_fpie}" = x"yes" + then + PIE_CFLAGS="-fPIE" + PIE_LDFLAGS="-pie" + fi fi m4_include(lib/socket_wrapper/config.m4) |