]> git.ipfire.org Git - thirdparty/automake.git/commitdiff
quoting fixlet
authorTom Tromey <tromey@redhat.com>
Wed, 27 Aug 1997 19:18:57 +0000 (19:18 +0000)
committerTom Tromey <tromey@redhat.com>
Wed, 27 Aug 1997 19:18:57 +0000 (19:18 +0000)
ChangeLog
automake.in

index 6caa87084125b10ddbf9cd522ad2f5979235a1a8..452ed85db58233adb4bda3b592bed2ab5960c95e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 Wed Aug 27 12:56:50 1997  Tom Tromey  <tromey@cygnus.com>
 
+       * automake.in (handle_yacc_lex_cxx): Quoting fixlet.  From Kaveh
+       Ghazi.
+
        * aclocal.in (write_aclocal): Print copyright and copying
        permissions.  From RMS.
        * automake.in (initialize_global_constants): More copyright stuff
index 7249ca004b1b51bdadb2d184438d3f453205865a..9e7ed6cf65b0504e115e6417cddee25e62344903 100755 (executable)
@@ -922,7 +922,7 @@ sub handle_yacc_lex_cxx
        {
            # Each _.c file must depend on ansi2knr; otherwise it
            # might be used in a parallel build before it is built.
-           $output_rules .= $base . "_.c: $base.c $(ANSI2KNR)\n\t"
+           $output_rules .= $base . "_.c: $base.c \$(ANSI2KNR)\n\t"
                . '$(ANSI2KNR) ' . $base . '.c ' . $base . "_.c\n";
            push (@objects, $base . '_.o');
            push (@objects, $base . '_.lo') if $seen_libtool;