Mercurial > hg > octave-kai > gnulib-hg
changeset 13104:3f4bdc04f3f1
maint.mk: fix some fallout
Also rearrange ChangeLog to match commit order.
* NEWS: Document the incompatible change, and its effect on cfg.mk.
* top/maint.mk (sc_prohibit_test_minus_ao): Update.
Signed-off-by: Eric Blake <eblake@redhat.com>
author | Eric Blake <eblake@redhat.com> |
---|---|
date | Fri, 02 Apr 2010 08:47:05 -0600 |
parents | 3622812c3a89 |
children | 6d950d2ec11e |
files | ChangeLog NEWS top/maint.mk |
diffstat | 3 files changed, 31 insertions(+), 18 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog +++ b/ChangeLog @@ -1,18 +1,8 @@ -2010-03-31 Eric Blake <eblake@redhat.com> - - maint.mk: check for [ as well as test - * top/maint.mk (sc_prohibit_test_minus_ao): Extend test. - Based on a libvirt report by Matthias Bolte. - - gnumakefile: don't squelch _version output - * top/GNUmakefile (_version): Create one-shot dependency rather - than using $(shell) when version must be regenerated. - (_autoreconf): Run verbosely, by default. - - sys_time: avoid compiler warnings - * lib/sys_time.in.h (includes): Ensure gcc pragma is - unconditional, fixing regression from 2010-03-29. - Reported by Simon Josefsson. +2010-04-02 Eric Blake <eblake@redhat.com> + + maint.mk: fix some fallout + * NEWS: Document the incompatible change, and its effect on cfg.mk. + * top/maint.mk (sc_prohibit_test_minus_ao): Update. 2010-03-28 Jose E. Marchesi <jemarch@gnu.org> @@ -58,6 +48,24 @@ (sc_error_message_uppercase): Likewise. (sc_error_message_period): Likewise. +2010-03-31 Eric Blake <eblake@redhat.com> + + maint.mk: check for [ as well as test + * top/maint.mk (sc_prohibit_test_minus_ao): Extend test. + Based on a libvirt report by Matthias Bolte. + + gnumakefile: don't squelch _version output + * top/GNUmakefile (_version): Create one-shot dependency rather + than using $(shell) when version must be regenerated. + (_autoreconf): Run verbosely, by default. + + sys_time: avoid compiler warnings + * lib/sys_time.in.h (includes): Ensure gcc pragma is + unconditional, fixing regression from 2010-03-29. + Reported by Simon Josefsson. + +2010-03-28 Jose E. Marchesi <jemarch@gnu.org> + maint.mk: s/_header_without_use/_sc_header_without_use/ * top/maint.mk (_sc_header_without_use): Rename from _header_without_use. (sc_prohibit_assert_without_use): Use the new name.
--- a/NEWS +++ b/NEWS @@ -6,6 +6,11 @@ Date Modules Changes +2010-04-02 maintainer-makefile + The macro _prohibit_regexp has been revamped into + a new macro _sc_search_regexp; custom syntax + checks in your cfg.mk will need to be rewritten. + 2010-03-28 lib-ignore This module now provides a variable IGNORE_UNUSED_LIBRARIES_CFLAGS that you should add to LDFLAGS (when linking C programs only) or
--- a/top/maint.mk +++ b/top/maint.mk @@ -670,9 +670,9 @@ # Using test's -a and -o operators is not portable. # We prefer test over [, since the latter is spelled [[ in configure.ac. sc_prohibit_test_minus_ao: - @re='(\<test| \[+) .+ -[ao] ' \ - msg='$(_ptm1); $(_ptm2)' \ - $(_prohibit_regexp) + @prohibit='(\<test| \[+) .+ -[ao] ' \ + halt='$(_ptm1); $(_ptm2)' \ + $(_sc_search_regexp) # Each program that uses proper_name_utf8 must link with one of the # ICONV libraries. Otherwise, some ICONV library must appear in LDADD.