From: Jim Meyering Date: Tue, 5 Jan 2021 20:43:41 +0000 (-0800) Subject: maintainer-makefile: correct preceding change X-Git-Tag: v1.0~3199 X-Git-Url: https://gitweb.git.savannah.gnu.org/gitweb/?a=commitdiff_plain;h=5018ab735d8de36b642b56b460459e2fae14b61c;p=gnulib.git maintainer-makefile: correct preceding change * top/maint.mk (syntax-check-rules): Use LC_ALL=C, not LANG=C. --- diff --git a/ChangeLog b/ChangeLog index 83b2cda2d7..893d9fd2a1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2021-01-05 Jim Meyering + + maintainer-makefile: correct preceding change + * top/maint.mk (syntax-check-rules): Use LC_ALL=C, not LANG=C. + 2021-01-05 Paul Eggert maint: note syncs to glibc diff --git a/top/maint.mk b/top/maint.mk index 87f65c7e0e..934f23d56b 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 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)