* top/maint.mk (syntax-check-rules): Use LC_ALL=C, not LANG=C.
+2021-01-05 Jim Meyering <meyering@fb.com>
+
+ maintainer-makefile: correct preceding change
+ * top/maint.mk (syntax-check-rules): Use LC_ALL=C, not LANG=C.
+
2021-01-05 Paul Eggert <eggert@cs.ucla.edu>
maint: note syncs to glibc
_cfg_mk := $(wildcard $(srcdir)/cfg.mk)
# Collect the names of rules starting with 'sc_'.
-syntax-check-rules := $(sort $(shell env LANG=C $(SED) -n \
+syntax-check-rules := $(sort $(shell env LC_ALL=C $(SED) -n \
's/^\(sc_[a-zA-Z0-9_-]*\):.*/\1/p' $(srcdir)/$(ME) $(_cfg_mk)))
.PHONY: $(syntax-check-rules)