diff options
author | jlam <jlam> | 2001-05-02 04:53:11 +0000 |
---|---|---|
committer | jlam <jlam> | 2001-05-02 04:53:11 +0000 |
commit | 52923d51e756fc920ff007357ab7372ee9140443 (patch) | |
tree | 26b6d9718d4d761cc6b16b42ee02afa2f006606c /mk | |
parent | 61f4db438e007ea481a3e80452974fdf505dec04 (diff) | |
download | pkgsrc-52923d51e756fc920ff007357ab7372ee9140443.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.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/bsd.prefs.mk | 4 |
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 |