mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-29 19:30:36 +02:00
Use Gnulib's `stat-time' module; update Gnulib.
This updates Gnulib files to v0.0-4207-gc82b481. * m4/gnulib-cache.m4: Add `stat-time'.
This commit is contained in:
parent
fb0b64c12a
commit
9157d90102
49 changed files with 1230 additions and 682 deletions
10
maint.mk
10
maint.mk
|
@ -103,6 +103,12 @@ endif
|
|||
# Override this in cfg.mk if you are using a different format in your
|
||||
# NEWS file.
|
||||
today = $(shell date +%Y-%m-%d)
|
||||
|
||||
# Select which lines of NEWS are searched for $(news-check-regexp).
|
||||
# This is a sed line number spec. The default says that we search
|
||||
# lines 1..10 of NEWS for $(news-check-regexp).
|
||||
# If you want to search only line 3 or only lines 20-22, use "3" or "20,22".
|
||||
news-check-lines-spec ?= 1,10
|
||||
news-check-regexp ?= '^\*.* $(VERSION_REGEXP) \($(today)\)'
|
||||
|
||||
# Prevent programs like 'sort' from considering distinct strings to be equal.
|
||||
|
@ -874,8 +880,8 @@ sc_makefile_at_at_check:
|
|||
&& { echo '$(ME): use $$(...), not @...@' 1>&2; exit 1; } || :
|
||||
|
||||
news-check: NEWS
|
||||
if head $(srcdir)/NEWS | grep -E $(news-check-regexp) \
|
||||
>/dev/null; then \
|
||||
if sed -n $(news-check-lines-spec)p $(srcdir)/NEWS \
|
||||
| grep -E $(news-check-regexp) >/dev/null; then \
|
||||
:; \
|
||||
else \
|
||||
echo 'NEWS: $$(news-check-regexp) failed to match' 1>&2; \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue