From: Jim Meyering Date: Fri, 8 Sep 2006 07:57:21 +0000 (+0000) Subject: * bootstrap (cp_mark_as_generated): Don't add C-style comments for .l or .y files. X-Git-Tag: v6.2~27 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=80799ead4182741e4336624f553a2c79e78ba2ff;p=thirdparty%2Fcoreutils.git * bootstrap (cp_mark_as_generated): Don't add C-style comments for .l or .y files. --- diff --git a/ChangeLog b/ChangeLog index 4d1e684948..6708431593 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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 diff --git a/bootstrap b/bootstrap index b7f13ca3c9..45c1f52c0f 100755 --- a/bootstrap +++ b/bootstrap @@ -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= ;; *) ;;