diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-01-13 04:46:11 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-01-13 04:46:11 +0100 |
commit | 1e19c859a337422faac5b34b6a370492d98ab3b2 (patch) | |
tree | bf5c29053381aa5c5fb5c2b4a479244be532c805 /source4 | |
parent | 2c90e6fc7a2c0858babaa45f3bf969238739aabf (diff) | |
download | samba-1e19c859a337422faac5b34b6a370492d98ab3b2.tar.gz samba-1e19c859a337422faac5b34b6a370492d98ab3b2.tar.bz2 samba-1e19c859a337422faac5b34b6a370492d98ab3b2.zip |
Try to fix the build on Tru64; avoid single quotes because they get expanded by perl in the build system.
(This used to be commit bba8914af56cb161c275fbbdea2479d6f8bd703c)
Diffstat (limited to 'source4')
-rw-r--r-- | source4/lib/replace/libreplace_ld.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/replace/libreplace_ld.m4 b/source4/lib/replace/libreplace_ld.m4 index cb8e21434e..0ca6f7a34d 100644 --- a/source4/lib/replace/libreplace_ld.m4 +++ b/source4/lib/replace/libreplace_ld.m4 @@ -265,7 +265,7 @@ AC_DEFUN([AC_LIBREPLACE_LD_SHLIB_ALLOW_UNDEF_FLAG], LD_SHLIB_ALLOW_UNDEF_FLAG="-Wl,--allow-shlib-undefined" ;; *osf*) - LD_SHLIB_ALLOW_UNDEF_FLAG="-expect_unresolved '*'" + LD_SHLIB_ALLOW_UNDEF_FLAG="-Wl,-expect_unresolved,*" ;; *darwin*) LD_SHLIB_ALLOW_UNDEF_FLAG="-undefined dynamic_lookup" |