diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-05-14 00:31:48 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-05-14 00:31:48 +0000 |
commit | db7357fdcc2ed5432e959267441169ab71d070d9 (patch) | |
tree | 2d1079a14a41a8b099032a66be409c9b438096fa | |
parent | 5436f6be193bf92d723738d2d89384d0e85fcbcb (diff) | |
download | rtmux-db7357fdcc2ed5432e959267441169ab71d070d9.tar.gz rtmux-db7357fdcc2ed5432e959267441169ab71d070d9.tar.bz2 rtmux-db7357fdcc2ed5432e959267441169ab71d070d9.zip |
print is redundant. Doh.
-rw-r--r-- | GNUmakefile | 4 | ||||
-rw-r--r-- | Makefile | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/GNUmakefile b/GNUmakefile index dc90b3ca..9942b8e1 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -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 @@ -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/ { print $0 }') || true), ) +ifeq ($(shell ($(CC) -v 2>&1|awk '/gcc version 4/') || true), ) CPPFLAGS:= -I. -I- $(CPPFLAGS) else CPPFLAGS:= -iquote. $(CPPFLAGS) @@ -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 .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/ { print $0 }') || true +CCV!= (${CC} -v 2>&1|awk '/gcc version 4/') || true .if "${CCV}" == "" CPPFLAGS:= -I. -I- -I/usr/local/include ${CPPFLAGS} .else |