1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-02-14 03:12:10 +02:00

* bootstrap (cp_mark_as_generated): Don't add C-style comments for .l or .y files.

This commit is contained in:
Jim Meyering
2006-09-08 07:57:21 +00:00
parent af2c5a4ab0
commit 80799ead41
2 changed files with 2 additions and 1 deletions

View File

@@ -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>

View File

@@ -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= ;;
*) ;;