diff options
author | Tim Potter <tpot@samba.org> | 2003-11-02 16:31:38 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2003-11-02 16:31:38 +0000 |
commit | 1ae80ade5ebfa07cb726c1ce91afdcbfb0f2fea2 (patch) | |
tree | 247df6b8cc3b489ad090998c783114ed7a3bc156 /source3/configure.in | |
parent | b5e7ec9fcccd9599e4161d70092854cde5414569 (diff) | |
download | samba-1ae80ade5ebfa07cb726c1ce91afdcbfb0f2fea2.tar.gz samba-1ae80ade5ebfa07cb726c1ce91afdcbfb0f2fea2.tar.bz2 samba-1ae80ade5ebfa07cb726c1ce91afdcbfb0f2fea2.zip |
Fix duplicate libs problem in iconv detection code.
(This used to be commit a2feac08e89685c35a8cc18eaeac4c9316248f75)
Diffstat (limited to 'source3/configure.in')
-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 bbade6027f..4d1db6f498 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -1616,7 +1616,7 @@ dnl Try to find iconv(3) if test "$ICONV_FOUND" = yes; then LIB_ADD_DIR(LDFLAGS, "$i/lib") CFLAGS_ADD_DIR(CPPFLAGS, "$i/include") - LIBS="$save_LIBS $LIBS" + LIBS="$save_LIBS" ICONV_LOCATION=$i export LDFLAGS LIBS CPPFLAGS dnl Now, check for a working iconv ... we want to do it here because |