changeset 12864:9ab78f8f0368

maint.mk: allow the default upload destination dir to be overridden * top/maint.mk (upload_dest_dir_): Define with a default that preserves the status quo. (emit_upload_commands): Use it, rather than hard-coding $(PACKAGE). Reported by Peter Simons.
author Jim Meyering <meyering@redhat.com>
date Sun, 14 Feb 2010 16:42:22 +0100
parents 8fd1fe5e9683
children 19a113553866
files ChangeLog top/maint.mk
diffstat 2 files changed, 8 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
 2010-02-14  Jim Meyering  <meyering@redhat.com>
 
+	maint.mk: allow the default upload destination dir to be overridden
+	* top/maint.mk (upload_dest_dir_): Define with a default that
+	preserves the status quo.
+	(emit_upload_commands): Use it, rather than hard-coding $(PACKAGE).
+	Reported by Peter Simons.
+
 	maint.mk: prohibit inclusion of "hash.h" without_use
 	* top/maint.mk (sc_prohibit_hash_without_use): New rule.
 
--- a/top/maint.mk
+++ b/top/maint.mk
@@ -798,11 +798,12 @@
 ftp-gnu = ftp://ftp.gnu.org/gnu
 www-gnu = http://www.gnu.org
 
+upload_dest_dir_ ?= $(PACKAGE)
 emit_upload_commands:
 	@echo =====================================
 	@echo =====================================
 	@echo "$(build_aux)/gnupload $(GNUPLOADFLAGS) \\"
-	@echo "    --to $(gnu_rel_host):$(PACKAGE) \\"
+	@echo "    --to $(gnu_rel_host):$(upload_dest_dir_) \\"
 	@echo "  $(rel-files)"
 	@echo '# send the ~/announce-$(my_distdir) e-mail'
 	@echo =====================================