This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "GNU M4 source repository".
http://git.sv.gnu.org/gitweb/?p=m4.git;a=commitdiff;h=e94228df28e881da59dd86bfb513ad9d07ca392a The branch, branch-1.4 has been updated via e94228df28e881da59dd86bfb513ad9d07ca392a (commit) via 39a8eb3846b65914fecf7b4f981e1dd029de1f5c (commit) from 90a0154d6ef1effe64c199eb61a06430199aaa91 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit e94228df28e881da59dd86bfb513ad9d07ca392a Author: Eric Blake <[email protected]> Date: Tue Mar 3 16:35:06 2009 -0700 Try to tolerate spaces in directory names in testsuite. * doc/m4.texinfo (Diversions, Using frozen files): Provide shell quoting, in case __program__ contains spaces. Signed-off-by: Eric Blake <[email protected]> commit 39a8eb3846b65914fecf7b4f981e1dd029de1f5c Author: Eric Blake <[email protected]> Date: Tue Mar 3 10:26:51 2009 -0700 Improve web-manual maintainer rule. * maint.mk (web-manual): Work with VPATH builds. Factor package-specific detail... * cfg.mk (manual_title): ...to new variable. Signed-off-by: Eric Blake <[email protected]> ----------------------------------------------------------------------- Summary of changes: ChangeLog | 11 +++++++++++ cfg.mk | 5 ++++- doc/m4.texinfo | 6 +++--- maint.mk | 6 +++--- 4 files changed, 21 insertions(+), 7 deletions(-) diff --git a/ChangeLog b/ChangeLog index 696493c..a276ec1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,14 @@ +2009-03-03 Eric Blake <[email protected]> + + Try to tolerate spaces in directory names in testsuite. + * doc/m4.texinfo (Diversions, Using frozen files): Provide shell + quoting, in case __program__ contains spaces. + + Improve web-manual maintainer rule. + * maint.mk (web-manual): Work with VPATH builds. Factor + package-specific detail... + * cfg.mk (manual_title): ...to new variable. + 2009-02-26 Eric Blake <[email protected]> Make bootstrap easier on Solaris. diff --git a/cfg.mk b/cfg.mk index 8de2510..ff05a1e 100644 --- a/cfg.mk +++ b/cfg.mk @@ -1,5 +1,5 @@ # Customize maint.mk. -*- makefile -*- -# Copyright (C) 2003-2008 Free Software Foundation, Inc. +# Copyright (C) 2003-2009 Free Software Foundation, Inc. # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -21,6 +21,9 @@ gnu_ftp_host-beta = alpha.gnu.org gnu_ftp_host-major = ftp.gnu.org gnu_rel_host = $(gnu_ftp_host-$(RELEASE_TYPE)) +# Used in maint.mk's web-manual rule +manual_title = GNU macro processor + url_dir_list = \ ftp://$(gnu_rel_host)/gnu/m4 diff --git a/doc/m4.texinfo b/doc/m4.texinfo index 6877ecc..f07b9ae 100644 --- a/doc/m4.texinfo +++ b/doc/m4.texinfo @@ -5180,7 +5180,7 @@ ifdef(`__unix__', , ')m4exit(`77')')dnl changequote(`[', `]')dnl syscmd([echo 'divert(1)hi -format(%1000000d, 1)' | ]__program__[ | sed -n 1p])dnl +format(%1000000d, 1)' | ']__program__[' | sed -n 1p])dnl @result{}hi sysval @result{}0 @@ -7115,9 +7115,9 @@ ifdef(`__unix__', , ')m4exit(`77')')dnl changequote(`[', `]')dnl syscmd([echo 'changequote([,])pushdef([divnum],[hi])dnl' \ - | ]__program__[ -F in.m4f \ + | ']__program__[' -F in.m4f \ && echo 'divnum popdef([divnum])divnum' \ - | ]__program__[ -R in.m4f \ + | ']__program__[' -R in.m4f \ && rm in.m4f])status sysval @result{}hi 0 @result{}status 0 diff --git a/maint.mk b/maint.mk index e036105..5b3f7cc 100644 --- a/maint.mk +++ b/maint.mk @@ -193,8 +193,8 @@ delta-diff: prev-tarball new-tarball .PHONY: web-manual web-manual: - @cd ./doc ; \ - $(SHELL) $(abs_srcdir)/build-aux/gendocs.sh \ + @cd '$(srcdir)/doc' ; \ + $(SHELL) ../build-aux/gendocs.sh -o '$(abs_builddir)/doc/manual' \ --email $(PACKAGE_BUGREPORT) $(PACKAGE) \ - "$(PACKAGE_NAME) - GNU macro processor" + "$(PACKAGE_NAME) - $(manual_title)" @echo " *** Upload the doc/manual directory to web-cvs." hooks/post-receive -- GNU M4 source repository
