From 826add53f19fabb474babc317b4f8f9a322dcb95 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Fri, 26 Jun 2009 16:01:12 +0000 Subject: Set LC_ALL=C to stop i18n breaking gcc test. --- GNUmakefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'GNUmakefile') diff --git a/GNUmakefile b/GNUmakefile index 29dbe0d9..d1e9abf1 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -1,4 +1,4 @@ -# $Id: GNUmakefile,v 1.105 2009-06-25 16:25:55 nicm Exp $ +# $Id: GNUmakefile,v 1.106 2009-06-26 16:01:12 nicm Exp $ .PHONY: clean @@ -13,7 +13,7 @@ LIBS+= -lncurses # This sort of sucks but gets rid of the stupid warning and should work on # most platforms... -ifeq ($(shell ($(CC) -v 2>&1|awk '/gcc version 4/') || true), ) +ifeq ($(shell (LC_ALL=C $(CC) -v 2>&1|awk '/gcc version 4/') || true), ) CPPFLAGS:= -I. -I- $(CPPFLAGS) else CPPFLAGS:= -iquote. $(CPPFLAGS) -- cgit