summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAkim Demaille <akim@lrde.epita.fr>2012-09-20 11:09:53 +0200
committerAkim Demaille <akim@lrde.epita.fr>2012-09-25 11:50:09 +0200
commita294088ce06e24f13c66a53966fc745709af1d20 (patch)
tree4fc6e5c102550e16715f7607614d713a1723a17e
parent4430dd023d6c2b7b63a87fa62dcc2360c5a34a12 (diff)
downloadgnulib-a294088ce06e24f13c66a53966fc745709af1d20.tar.gz
maint.mk: silent rules
With help from Stefano Lattarini. * top/maint.mk (writable-files): Use $(AM_V_GEN). (announcement): Use $(AM_V_at).
-rw-r--r--ChangeLog7
-rw-r--r--top/maint.mk6
2 files changed, 11 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index e67b6d06cf..ba00e87e95 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2012-09-20 Akim Demaille <akim@lrde.epita.fr>
+
+ maint.mk: silent rules
+ With help from Stefano Lattarini.
+ * top/maint.mk (writable-files): Use $(AM_V_GEN).
+ (announcement): Use $(AM_V_at).
+
2012-09-24 Paul Eggert <eggert@cs.ucla.edu>
localename: port gl_locale_name_thread_unsafe to FreeBSD
diff --git a/top/maint.mk b/top/maint.mk
index 5d63b49338..87bbde9ddf 100644
--- a/top/maint.mk
+++ b/top/maint.mk
@@ -1135,7 +1135,7 @@ sc_makefile_path_separator_check:
# i.e., when pkg-M.N.tar.xz already exists (either in "." or in ../release)
# and is read-only.
writable-files:
- if test -d $(release_archive_dir); then \
+ $(AM_V_GEN)if test -d $(release_archive_dir); then \
for file in $(DIST_ARCHIVES); do \
for p in ./ $(release_archive_dir)/; do \
test -e $$p$$file || continue; \
@@ -1280,7 +1280,9 @@ else
endif
announcement: NEWS ChangeLog $(rel-files)
- $(AM_V_GEN)$(srcdir)/$(_build-aux)/announce-gen \
+# Not $(AM_V_GEN) since the output of this command serves as
+# annoucement message: it would start with " GEN announcement".
+ $(AM_V_at)$(srcdir)/$(_build-aux)/announce-gen \
--mail-headers='$(announcement_mail_headers_)' \
--release-type=$(RELEASE_TYPE) \
--package=$(PACKAGE) \