summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjlam <jlam@pkgsrc.org>2001-05-02 04:53:11 +0000
committerjlam <jlam@pkgsrc.org>2001-05-02 04:53:11 +0000
commit981957ed83daac71acc42ce9ababdad811063238 (patch)
tree26b6d9718d4d761cc6b16b42ee02afa2f006606c
parentb7b3b3dafd6943260d001af3b2d7ab37aed3aacb (diff)
downloadpkgsrc-981957ed83daac71acc42ce9ababdad811063238.tar.gz
Fix a typo: a = sign should actually be !=. The CHECK_FREETYPE2 stuff
should actually work now on non-XFree86-4.0.x systems.
-rw-r--r--mk/bsd.prefs.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/bsd.prefs.mk b/mk/bsd.prefs.mk
index 4319a074a6b..6ae0b95d5ee 100644
--- a/mk/bsd.prefs.mk
+++ b/mk/bsd.prefs.mk
@@ -1,4 +1,4 @@
-# $NetBSD: bsd.prefs.mk,v 1.33 2001/04/22 04:52:31 jlam Exp $
+# $NetBSD: bsd.prefs.mk,v 1.34 2001/05/02 04:53:11 jlam Exp $
#
# Make file, included to get the site preferences, if any. Should
# only be included by package Makefiles before any .if defined()
@@ -133,7 +133,7 @@ HAVE_BUILTIN_MESA= YES
.if (defined(CHECK_FREETYPE2) || defined(USE_FREETYPE2))
X11BASE?= /usr/X11R6
.if exists(${X11BASE}/include/freetype2/freetype/freetype.h)
-__BUILTIN_FREETYPE2= egrep -c BuildFreetype2Library ${X11BASE}/lib/X11/config/X11.tmpl || true
+__BUILTIN_FREETYPE2!= egrep -c BuildFreetype2Library ${X11BASE}/lib/X11/config/X11.tmpl || true
.else
__BUILTIN_FREETYPE2= 0
.endif