summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2009-05-14 00:31:48 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2009-05-14 00:31:48 +0000
commitdb7357fdcc2ed5432e959267441169ab71d070d9 (patch)
tree2d1079a14a41a8b099032a66be409c9b438096fa /Makefile
parent5436f6be193bf92d723738d2d89384d0e85fcbcb (diff)
print is redundant. Doh.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index b5096756..c048e377 100644
--- a/Makefile
+++ b/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
.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