From: Andreas Schwab Date: Tue, 5 May 2009 05:13:46 +0000 (+0200) Subject: tests: fix typo in check-AUTHORS rule X-Git-Tag: v7.4~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1d02be3b9ddac1fa51e91bc46bc736603bd615d7;p=thirdparty%2Fcoreutils.git tests: fix typo in check-AUTHORS rule * src/Makefile.am (check-AUTHORS): Set locale. --- diff --git a/src/Makefile.am b/src/Makefile.am index 136cadac95..3bed7b1af6 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -388,8 +388,9 @@ au_dotdot = authors-dotdot au_actual = authors-actual .PHONY: check-AUTHORS check-AUTHORS: $(all_programs) - $(AM_V_GEN)LC_ALL="$$locale" ./cat --version \ - | grep ' Torbjorn ' \ + $(AM_V_GEN)locale=en_US.UTF-8; \ + LC_ALL="$$locale" ./cat --version \ + | grep ' Torbjorn ' > /dev/null \ && { echo "$@: skipping this check"; exit 0; }; \ rm -f $(au_actual) $(au_dotdot); \ for i in `ls $(all_programs) | sed -e 's,$(EXEEXT)$$,,' \