diff options
author | Björn Jacke <bj@sernet.de> | 2009-03-11 15:32:49 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2009-03-17 16:11:14 +0100 |
commit | 066cbb5835feae90e2ce4172e3c58bf50a2b004b (patch) | |
tree | f50125acbfa1e65b28eacb2fa2feb1a180ccbadd /source4/aclocal.m4 | |
parent | da06a345cc290ca29234bc231fc9174d2780cf4f (diff) | |
download | samba-066cbb5835feae90e2ce4172e3c58bf50a2b004b.tar.gz |
clean up lib64 linking paths the same way as lib
Signed-off-by: Michael Adam <obnox@samba.org>
Diffstat (limited to 'source4/aclocal.m4')
-rw-r--r-- | source4/aclocal.m4 | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/source4/aclocal.m4 b/source4/aclocal.m4 index 240a994f9df..8ad8f47cd69 100644 --- a/source4/aclocal.m4 +++ b/source4/aclocal.m4 @@ -31,11 +31,17 @@ AC_DEFUN(LIB_REMOVE_USR_LIB,[ case [$]l[$]i in -L/usr/lib) ;; -L/usr/lib/) ;; - -Wl,-rpath,/usr/lib) ;; - -Wl,-rpath,/usr/lib/) ;; + -L/usr/lib64) ;; + -L/usr/lib64/) ;; + -Wl,-rpath,/usr/lib) l="";; + -Wl,-rpath,/usr/lib/) l="";; + -Wl,-rpath,/usr/lib64) l="";; + -Wl,-rpath,/usr/lib64/) l="";; -Wl,-rpath) l=[$]i;; -Wl,-rpath-Wl,/usr/lib) l="";; -Wl,-rpath-Wl,/usr/lib/) l="";; + -Wl,-rpath-Wl,/usr/lib64) l="";; + -Wl,-rpath-Wl,/usr/lib64/) l="";; *) s=" " if test x"[$]ac_new_flags" = x""; then |