From 384bf7b5c050c0e36dd8b864ba92f48fbed41e86 Mon Sep 17 00:00:00 2001 From: Otto Date: Mon, 14 Jun 2021 15:12:01 +0200 Subject: [PATCH] Set LANG=C explicitly, otherwise it may lead to suprises if the user isn't using LANG=C. --- Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index dc1d2bf920..fcea87a96f 100644 --- a/Makefile.am +++ b/Makefile.am @@ -17,5 +17,5 @@ ACLOCAL_AMFLAGS = -I m4 dvi: # do nothing to build dvi format-code: - ./build-scripts/format-code `find . -type f -name '*.[ch][ch]' | sort | comm -23 - .not-formatted` + ./build-scripts/format-code `find . -type f -name '*.[ch][ch]' | LANG=C sort | LANG=C comm -23 - .not-formatted` -- 2.47.2