From: Bruno Haible Date: Tue, 21 Jan 2003 21:21:31 +0000 (+0000) Subject: libtool bug fix. X-Git-Tag: v0.12~1165 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fbde805f855b26419579abc049971835f9fb7fc6;p=thirdparty%2Fgettext.git libtool bug fix. --- diff --git a/ChangeLog b/ChangeLog index 4ae36c759..77861cf29 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2003-01-03 Albert Chin + + * ltmain.sh: Don't pass -R flags found in a .la's dependency_libs + variable directly down to the linker. + Reported by Tim Mooney . + 2003-01-14 Bruno Haible * configure.in (gt_cv_prog_cxx_namespaces): Reject C++ compilers that diff --git a/libasprintf/ChangeLog b/libasprintf/ChangeLog index 7de1a0a54..01440464e 100644 --- a/libasprintf/ChangeLog +++ b/libasprintf/ChangeLog @@ -1,3 +1,9 @@ +2003-01-03 Albert Chin + + * ltmain.sh: Don't pass -R flags found in a .la's dependency_libs + variable directly down to the linker. + Reported by Tim Mooney . + 2003-01-12 Bruno Haible * configure.in: Invoke gl_FUNC_ALLOCA instead of AC_FUNC_ALLOCA. diff --git a/libasprintf/ltmain.sh b/libasprintf/ltmain.sh index dcebb5f09..52cc1678c 100644 --- a/libasprintf/ltmain.sh +++ b/libasprintf/ltmain.sh @@ -2092,6 +2092,7 @@ compiler." for deplib in $tmp_libs; do case $deplib in -L*) new_libs="$deplib $new_libs" ;; + -R*) ;; *) case " $specialdeplibs " in *" $deplib "*) new_libs="$deplib $new_libs" ;; diff --git a/ltmain.sh b/ltmain.sh index dcebb5f09..52cc1678c 100644 --- a/ltmain.sh +++ b/ltmain.sh @@ -2092,6 +2092,7 @@ compiler." for deplib in $tmp_libs; do case $deplib in -L*) new_libs="$deplib $new_libs" ;; + -R*) ;; *) case " $specialdeplibs " in *" $deplib "*) new_libs="$deplib $new_libs" ;;