From 1d02be3b9ddac1fa51e91bc46bc736603bd615d7 Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Tue, 5 May 2009 07:13:46 +0200 Subject: tests: fix typo in check-AUTHORS rule * src/Makefile.am (check-AUTHORS): Set locale. --- src/Makefile.am | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/Makefile.am b/src/Makefile.am index 136cadac9..3bed7b1af 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)$$,,' \ -- cgit v1.2.3-54-g00ecf