? tests/suffix13.test Index: ChangeLog =================================================================== RCS file: /cvs/automake/automake/ChangeLog,v retrieving revision 1.2988 diff -u -r1.2988 ChangeLog --- ChangeLog 25 Apr 2007 17:55:15 -0000 1.2988 +++ ChangeLog 1 May 2007 14:42:57 -0000 @@ -1,3 +1,11 @@ +2007-05-01 Florian Briegel + + * automake.in: Fixed bug when building with renamed objects + and foreign languages. + * tests/suffix13.test: New test. + * tests/Makefile.am: Adjust. + * THANKS: Update. + 2007-04-25 Eric Blake * doc/stamp-vti: Remove generated file from revision control. @@ -337,7 +345,7 @@ * automake.in (handle_compile): Use subst, for maintainer-check. -2006-10-09 Andreas Köhler (tiny change) +2006-10-09 Andreas K�hler (tiny change) For PR automake/505: * lib/am/configure.am (am__CONFIG_DISTCLEAN_FILES): Index: THANKS =================================================================== RCS file: /cvs/automake/automake/THANKS,v retrieving revision 1.301 diff -u -r1.301 THANKS --- THANKS 29 Mar 2007 22:40:41 -0000 1.301 +++ THANKS 1 May 2007 14:42:57 -0000 @@ -87,6 +87,7 @@ Esben Haabendal Soerensen address@hidden Ezra Peisach address@hidden Flavien Astraud address@hidden +Florian Briegel address@hidden François Pinard address@hidden Fred Fish address@hidden Ganesan Rajagopal address@hidden Index: automake.in =================================================================== RCS file: /cvs/automake/automake/automake.in,v retrieving revision 1.1644 diff -u -r1.1644 automake.in --- automake.in 29 Mar 2007 23:01:59 -0000 1.1644 +++ automake.in 1 May 2007 14:43:07 -0000 @@ -1774,7 +1774,16 @@ { my $obj_sans_ext = substr ($object, 0, - length ($this_obj_ext)); - my $full_ansi = $full; + my $full_ansi; + if ($directory ne '') + { + $full_ansi = $directory . '/' . $base . $extension; + } + else + { + $full_ansi = $base . $extension; + } + if ($lang->ansi && option 'ansi2knr') { $full_ansi =~ s/$KNOWN_EXTENSIONS_PATTERN$/\$U$&/; Index: tests/Makefile.am =================================================================== RCS file: /cvs/automake/automake/tests/Makefile.am,v retrieving revision 1.621 diff -u -r1.621 Makefile.am --- tests/Makefile.am 29 Mar 2007 23:26:48 -0000 1.621 +++ tests/Makefile.am 1 May 2007 14:43:08 -0000 @@ -544,6 +544,7 @@ suffix10.test \ suffix11.test \ suffix12.test \ +suffix13.test \ symlink.test \ symlink2.test \ symlink3.test \