From: Simon Josefsson Date: Mon, 4 Jan 2021 22:12:46 +0000 (+0100) Subject: maintainer-makefile: Invoke syntax-checks regardless of locale. X-Git-Tag: v1.0~3212 X-Git-Url: https://gitweb.git.savannah.gnu.org/gitweb/?a=commitdiff_plain;h=cc4e07d3e8405e8cdf887d840fca6dc52b9e12fe;p=gnulib.git maintainer-makefile: Invoke syntax-checks regardless of locale. * top/maint.mk (syntax-check-rules): Invoke sed with LANG=C environment because [a-z] may not include 'w' in all locales. --- diff --git a/ChangeLog b/ChangeLog index c86fb78882..9ebc32bea1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2021-01-04 Simon Josefsson + + maintainer-makefile: Invoke syntax-checks regardless of locale. + * top/maint.mk (syntax-check-rules): Invoke sed with LANG=C + environment because [a-z] may not include 'w' in all locales. + 2021-01-04 Bruno Haible nstrftime, time_rz: Avoid using an obsolete Autoconf macro. diff --git a/top/maint.mk b/top/maint.mk index ee8c5ebd1e..87f65c7e0e 100644 --- a/top/maint.mk +++ b/top/maint.mk @@ -163,7 +163,7 @@ ifneq ($(_gl-Makefile),) _cfg_mk := $(wildcard $(srcdir)/cfg.mk) # Collect the names of rules starting with 'sc_'. -syntax-check-rules := $(sort $(shell $(SED) -n \ +syntax-check-rules := $(sort $(shell env LANG=C $(SED) -n \ 's/^\(sc_[a-zA-Z0-9_-]*\):.*/\1/p' $(srcdir)/$(ME) $(_cfg_mk))) .PHONY: $(syntax-check-rules)