]> sourceware.org Git - automake.git/commitdiff
* automake.in (lang_c_finish): Use $@ in the .c -> _.c rule.
authorAlexandre Duret-Lutz <adl@gnu.org>
Thu, 21 Nov 2002 11:54:11 +0000 (11:54 +0000)
committerAlexandre Duret-Lutz <adl@gnu.org>
Thu, 21 Nov 2002 11:54:11 +0000 (11:54 +0000)
ChangeLog
automake.in

index 63002eb5a943c9e742bd6cf30f005a7d36436750..4816f1b88065d864656aefda7a251db997e629a5 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2002-11-21  Alexandre Duret-Lutz  <adl@gnu.org>
 
+       * 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,
index 2350b028e001571c74202e07031100e6298e75e9..d88aa3b98aca0352e736103e2208489b0d3675ad 100755 (executable)
@@ -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');
This page took 0.040283 seconds and 5 git commands to generate.