From: Tom Tromey Date: Tue, 23 Mar 1999 13:20:45 +0000 (+0000) Subject: * automake.in (lang_lex_finish): Rewrite `l', not `y', to `c'. X-Git-Tag: user-dep-gen-branchpoint~14 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c11a65bcf3255c3b118670cad787c9a632184607;p=thirdparty%2Fautomake.git * automake.in (lang_lex_finish): Rewrite `l', not `y', to `c'. From Ralf Corsepius. --- diff --git a/ChangeLog b/ChangeLog index 85f58b9ea..98ddc1273 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +1999-03-23 Tom Tromey + + * automake.in (lang_lex_finish): Rewrite `l', not `y', to `c'. + From Ralf Corsepius. + 1999-02-01 Thomas Tanner * automake.in: accept both A(C|M)_PROG_LIBTOOL, print a diff --git a/automake.in b/automake.in index fec411f9b..47c70693e 100755 --- a/automake.in +++ b/automake.in @@ -4739,7 +4739,7 @@ sub lang_lex_finish # should be removed by maintainer-clean. So that's what we # do. $file =~ /^(.*)\.(l|ll|l\+\+|lxx|lpp)$/; - ($cname = $2) =~ tr/y/c/; + ($cname = $2) =~ tr/l/c/; push (@maintainer_clean_files, "${1}.${cname}"); }