summaryrefslogtreecommitdiff
path: root/top
diff options
context:
space:
mode:
authorJim Meyering <meyering@fb.com>2021-01-05 12:43:41 -0800
committerJim Meyering <meyering@fb.com>2021-01-05 12:43:41 -0800
commit5018ab735d8de36b642b56b460459e2fae14b61c (patch)
treeb416fe14ca8aaf7616b48df1c110c2cdb6b37d0e /top
parentc7b5d627ba95313c35192d714ad9794389824a49 (diff)
downloadgnulib-5018ab735d8de36b642b56b460459e2fae14b61c.tar.gz
maintainer-makefile: correct preceding change
* top/maint.mk (syntax-check-rules): Use LC_ALL=C, not LANG=C.
Diffstat (limited to 'top')
-rw-r--r--top/maint.mk2
1 files changed, 1 insertions, 1 deletions
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)