* 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 Simon Josefsson <simon@josefsson.org>
+
+ 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 <bruno@clisp.org>
nstrftime, time_rz: Avoid using an obsolete Autoconf macro.
_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)