summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2009-05-16 18:59:50 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2009-05-16 18:59:50 +0000
commit25911d32e1040277afe766213806a9fc52910b79 (patch)
tree482fb1d74af839bd0306b4cbfbeebeced67c154f /Makefile
parent100190214314cbcbdcf5cf4bb462e218a460b88e (diff)
Use empty(), FreeBSD doesn't like ==.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 6de48279..6f344851 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-# $Id: Makefile,v 1.137 2009-05-15 12:57:36 nicm Exp $
+# $Id: Makefile,v 1.138 2009-05-16 18:59:50 nicm Exp $
.SUFFIXES: .c .o
.PHONY: clean
@@ -15,7 +15,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
-.if "${CCV}" == ""
+.if empty(CCV)
CPPFLAGS:= -I. -I- -I/usr/local/include ${CPPFLAGS}
.else
CPPFLAGS:= -iquote. -I/usr/local/include ${CPPFLAGS}