From: Tom Tromey Date: Wed, 27 Aug 1997 19:18:57 +0000 (+0000) Subject: quoting fixlet X-Git-Tag: Release-1-2b~18 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=726819fba00ad187ffb597c9f0753b29d2ba53c5;p=thirdparty%2Fautomake.git quoting fixlet --- diff --git a/ChangeLog b/ChangeLog index 6caa87084..452ed85db 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ Wed Aug 27 12:56:50 1997 Tom Tromey + * 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 diff --git a/automake.in b/automake.in index 7249ca004..9e7ed6cf6 100755 --- a/automake.in +++ b/automake.in @@ -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;