mirror of
https://github.com/tmate-io/tmate.git
synced 2025-01-12 17:08:14 +01:00
Set LC_ALL=C to stop i18n breaking gcc test.
This commit is contained in:
parent
1aaf47e698
commit
826add53f1
@ -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)
|
||||
|
4
Makefile
4
Makefile
@ -1,4 +1,4 @@
|
||||
# $Id: Makefile,v 1.140 2009-06-25 16:25:55 nicm Exp $
|
||||
# $Id: Makefile,v 1.141 2009-06-26 16:01:12 nicm Exp $
|
||||
|
||||
.SUFFIXES: .c .o
|
||||
.PHONY: clean
|
||||
@ -14,7 +14,7 @@ LIBS+= -lncurses
|
||||
|
||||
# This sort of sucks but gets rid of the stupid warning and should work on
|
||||
# most platforms...
|
||||
CCV!= (${CC} -v 2>&1|awk '/gcc version 4/') || true
|
||||
CCV!= (LC_ALL=C ${CC} -v 2>&1|awk '/gcc version 4/') || true
|
||||
.if empty(CCV)
|
||||
CPPFLAGS:= -I. -I- -I/usr/local/include ${CPPFLAGS}
|
||||
.else
|
||||
|
Loading…
Reference in New Issue
Block a user