diff options
author | Jim Meyering <meyering@redhat.com> | 2009-03-18 09:57:12 +0100 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2009-03-18 09:57:12 +0100 |
commit | 4e0fae7f0add79445d6d288b97fdcb7180becab4 (patch) | |
tree | 8d9196d8c02b0d108e9db46794bed63a7ae2d695 | |
parent | d54e7a9d04268557d59ea03774505a9a3f531ed2 (diff) | |
download | idutils-4e0fae7f0add79445d6d288b97fdcb7180becab4.tar.gz idutils-4e0fae7f0add79445d6d288b97fdcb7180becab4.tar.bz2 idutils-4e0fae7f0add79445d6d288b97fdcb7180becab4.zip |
maint.mk: update from coreutils
* maint.mk: Sync.
* cfg.mk (manual_title): Define.
-rw-r--r-- | cfg.mk | 3 | ||||
-rw-r--r-- | maint.mk | 8 |
2 files changed, 8 insertions, 3 deletions
@@ -24,6 +24,9 @@ gnu_rel_host = $(gnu_ftp_host-$(RELEASE_TYPE)) url_dir_list = \ ftp://$(gnu_rel_host)/gnu/coreutils +# Used in maint.mk's web-manual rule +manual_title = GNU idutils: ID database utilities + # The GnuPG ID of the key used to sign the tarballs. gpg_key_ID = B9AB9A16 @@ -374,7 +374,7 @@ sc_the_the: sc_trailing_blank: @re='[ ]$$' \ - ignore_case=1 msg='found trailing blank(s)' \ + msg='found trailing blank(s)' \ $(_prohibit_regexp) # Match lines like the following, but where there is only one space @@ -641,7 +641,7 @@ maintainer-distcheck: # Don't make a distribution if checks fail. # Also, make sure the NEWS file is up-to-date. vc-dist: $(local-check) cvs-check maintainer-distcheck - $(MAKE) dist + XZ_OPT=-9ev $(MAKE) dist # Use this to make sure we don't run these programs when building # from a virgin tgz file, below. @@ -866,8 +866,10 @@ alpha beta major: $(local-check) writable-files .PHONY: web-manual web-manual: + @test -z "$(manual_title)" \ + && { echo define manual_title in cfg.mk 1>&2; exit 1; } || : @cd '$(srcdir)/doc'; \ $(SHELL) ../build-aux/gendocs.sh -o '$(abs_builddir)/doc/manual' \ --email $(PACKAGE_BUGREPORT) $(PACKAGE) \ - "$(PACKAGE_NAME) - Core GNU utilities" + "$(PACKAGE_NAME) - $(manual_title)" @echo " *** Upload the doc/manual directory to web-cvs." |