diff options
author | Jim Meyering <jim@meyering.net> | 2006-09-08 07:57:21 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2006-09-08 07:57:21 +0000 |
commit | 80799ead4182741e4336624f553a2c79e78ba2ff (patch) | |
tree | 2845250bb8ec5473d47b0e816d9c972cf9f3d399 | |
parent | af2c5a4ab0cdec88a65c35b4ad2fa1eb935a93e1 (diff) | |
download | coreutils-80799ead4182741e4336624f553a2c79e78ba2ff.tar.xz |
* bootstrap (cp_mark_as_generated): Don't add C-style comments for .l or .y files.
-rw-r--r-- | ChangeLog | 1 | ||||
-rwxr-xr-x | bootstrap | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -4,6 +4,7 @@ (slurp): Use it to prepend editor hints and a warning that the file we're copying is generated. Suggestion from Bruce Korb. + (cp_mark_as_generated): Don't add C-style comments for .l or .y files. 2006-09-07 Jim Meyering <jim@meyering.net> @@ -218,7 +218,7 @@ cp_mark_as_generated() local dst=$2 local c1 c2 case $dst in - *.[chly]) c1='/* '; c2=' */';; + *.[ch]) c1='/* '; c2=' */';; *.texi) c1='@c '; c2= ;; *.m4|*/Make*|Make*) c1='# '; c2= ;; *) ;; |