diff options
author | Kai Blin <kai@samba.org> | 2008-05-12 14:39:03 +0200 |
---|---|---|
committer | Kai Blin <kai@samba.org> | 2008-05-14 15:23:41 +0200 |
commit | 7c4c5e5f844b9c50e8f69c22ad541981fb1b741f (patch) | |
tree | 124b00798a2f6b4be10c5a24d3f2568adbdded5b | |
parent | 5547e5a416109524501c5c5be78efa0f8d10e749 (diff) | |
download | samba-7c4c5e5f844b9c50e8f69c22ad541981fb1b741f.tar.gz samba-7c4c5e5f844b9c50e8f69c22ad541981fb1b741f.tar.bz2 samba-7c4c5e5f844b9c50e8f69c22ad541981fb1b741f.zip |
configure: Kill linker warnings about 32bit libs on 64bit Linux.
(This used to be commit 9a40cbd66f71c49af4c72ed826d66c5f037a3171)
-rw-r--r-- | source3/configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/configure.in b/source3/configure.in index bbce8b65e8..a2f725bcb3 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -2253,7 +2253,7 @@ for i in $ICONV_LOOK_DIRS ; do # library directory is there and check the ABI directory first (which # should be harmless on other systems. # For IA64 HPUX systems, the libs are located in lib/hpux32 instead of lib. - for l in "lib32" "lib" "lib/hpux32"; do + for l in "lib" "lib32" "lib/hpux32"; do if test -d "$i/$l" ; then LDFLAGS="$save_LDFLAGS -L$i/$l" LIBS= |