changeset 15587:a9fbdd1023d5

maint.mk: mark the post-release commit log with "maint: " prefix * top/maint.mk (emit-commit-log): Add "maint: " prefix to the one-line commit-log summary.
author Jim Meyering <meyering@redhat.com>
date Thu, 08 Sep 2011 17:26:05 +0200
parents dcb8b5f068e8
children e2334639eeea
files ChangeLog top/maint.mk
diffstat 2 files changed, 9 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2011-09-08  Jim Meyering  <meyering@redhat.com>
+
+	maint.mk: mark the post-release commit log with "maint: " prefix
+	* top/maint.mk (emit-commit-log): Add "maint: " prefix to the
+	one-line commit-log summary.
+
 2011-09-08  Reuben Thomas  <rrt@sc3d.org>
             Bruno Haible  <bruno@clisp.org>
 
--- a/top/maint.mk
+++ b/top/maint.mk
@@ -1235,9 +1235,9 @@
 	@echo =====================================
 
 define emit-commit-log
-  printf '%s\n' 'post-release administrivia' '' \
-    '* NEWS: Add header line for next release.' \
-    '* .prev-version: Record previous version.' \
+  printf '%s\n' 'maint: post-release administrivia' ''			\
+    '* NEWS: Add header line for next release.'				\
+    '* .prev-version: Record previous version.'				\
     '* cfg.mk (old_NEWS_hash): Auto-update.'
 endef