mirror of
https://github.com/tmux/tmux.git
synced 2024-11-17 18:08:51 +00:00
print is redundant. Doh.
This commit is contained in:
parent
5436f6be19
commit
db7357fdcc
@ -1,4 +1,4 @@
|
|||||||
# $Id: GNUmakefile,v 1.100 2009-05-14 00:09:02 nicm Exp $
|
# $Id: GNUmakefile,v 1.101 2009-05-14 00:31:48 nicm Exp $
|
||||||
|
|
||||||
.PHONY: clean
|
.PHONY: clean
|
||||||
|
|
||||||
@ -13,7 +13,7 @@ LIBS+= -lncurses
|
|||||||
|
|
||||||
# This sort of sucks but gets rid of the stupid warning and should work on
|
# This sort of sucks but gets rid of the stupid warning and should work on
|
||||||
# most platforms...
|
# most platforms...
|
||||||
ifeq ($(shell ($(CC) -v 2>&1|awk '/gcc version 4/ { print $0 }') || true), )
|
ifeq ($(shell ($(CC) -v 2>&1|awk '/gcc version 4/') || true), )
|
||||||
CPPFLAGS:= -I. -I- $(CPPFLAGS)
|
CPPFLAGS:= -I. -I- $(CPPFLAGS)
|
||||||
else
|
else
|
||||||
CPPFLAGS:= -iquote. $(CPPFLAGS)
|
CPPFLAGS:= -iquote. $(CPPFLAGS)
|
||||||
|
4
Makefile
4
Makefile
@ -1,4 +1,4 @@
|
|||||||
# $Id: Makefile,v 1.134 2009-05-14 00:28:04 nicm Exp $
|
# $Id: Makefile,v 1.135 2009-05-14 00:31:48 nicm Exp $
|
||||||
|
|
||||||
.SUFFIXES: .c .o
|
.SUFFIXES: .c .o
|
||||||
.PHONY: clean
|
.PHONY: clean
|
||||||
@ -14,7 +14,7 @@ LIBS+= -lncurses
|
|||||||
|
|
||||||
# This sort of sucks but gets rid of the stupid warning and should work on
|
# This sort of sucks but gets rid of the stupid warning and should work on
|
||||||
# most platforms...
|
# most platforms...
|
||||||
CCV!= (${CC} -v 2>&1|awk '/gcc version 4/ { print $0 }') || true
|
CCV!= (${CC} -v 2>&1|awk '/gcc version 4/') || true
|
||||||
.if "${CCV}" == ""
|
.if "${CCV}" == ""
|
||||||
CPPFLAGS:= -I. -I- -I/usr/local/include ${CPPFLAGS}
|
CPPFLAGS:= -I. -I- -I/usr/local/include ${CPPFLAGS}
|
||||||
.else
|
.else
|
||||||
|
Loading…
Reference in New Issue
Block a user