From: Otto Date: Mon, 14 Jun 2021 13:12:01 +0000 (+0200) Subject: Set LANG=C explicitly, otherwise it may lead to suprises if the user isn't using... X-Git-Tag: dnsdist-1.7.0-alpha1~142^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F10494%2Fhead;p=thirdparty%2Fpdns.git Set LANG=C explicitly, otherwise it may lead to suprises if the user isn't using LANG=C. --- 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`