From: Ralf Wildenhues Date: Sat, 21 Jan 2006 08:58:04 +0000 (+0000) Subject: * ltmain.in (compile mode): Also transform `.obj' correctly. X-Git-Tag: release-1-5-23b~65 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5f494aad9b71e9e5ffec508dd86ef747a243da13;p=thirdparty%2Flibtool.git * ltmain.in (compile mode): Also transform `.obj' correctly. Reported by George Bosilca . --- diff --git a/ChangeLog b/ChangeLog index 33c594cb4..26dbde2f8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-01-21 Ralf Wildenhues + + * ltmain.in (compile mode): Also transform `.obj' correctly. + Reported by George Bosilca . + 2006-01-12 Leif Ekblad * libtool.m4 (AC_LIBTOOL_SYS_DYNAMIC_LINKER) diff --git a/ltmain.in b/ltmain.in index c47d2cd35..0eec38de4 100644 --- a/ltmain.in +++ b/ltmain.in @@ -758,6 +758,7 @@ if test -z "$show_help"; then *.f90) xform=f90 ;; *.for) xform=for ;; *.java) xform=java ;; + *.obj) xform=obj ;; esac libobj=`$echo "X$libobj" | $Xsed -e "s/\.$xform$/.lo/"`