From: Alexandre Duret-Lutz Date: Thu, 21 Nov 2002 11:54:11 +0000 (+0000) Subject: * automake.in (lang_c_finish): Use $@ in the .c -> _.c rule. X-Git-Tag: Release-1-7-2b~97 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=63f2a9f480a4c54c17612470c96a8888ca5e2d7d;p=thirdparty%2Fautomake.git * automake.in (lang_c_finish): Use $@ in the .c -> _.c rule. --- diff --git a/ChangeLog b/ChangeLog index 63002eb5a..4816f1b88 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2002-11-21 Alexandre Duret-Lutz + * automake.in (lang_c_finish): Use $@ in the .c -> _.c rule. + * automake.in (handle_single_transform_list): Don't strip the directory from $full_ansi. This reverts my patch of 2002-10-16. (lang_c_finish): Use the full filename, including the directory, diff --git a/automake.in b/automake.in index 2350b028e..d88aa3b98 100755 --- a/automake.in +++ b/automake.in @@ -5618,7 +5618,7 @@ sub lang_c_finish . '| $(ANSI2KNR) > $@' # If ansi2knr fails then we shouldn't # create the _.c file - . " || rm -f ${root}_.c\n"); + . " || rm -f \$\@\n"); push (@objects, $base . '_.$(OBJEXT)'); push (@objects, $base . '_.lo') if variable_defined ('LIBTOOL');