diff options
author | tron <tron> | 2000-11-25 08:42:04 +0000 |
---|---|---|
committer | tron <tron> | 2000-11-25 08:42:04 +0000 |
commit | 36207ddc6a396b36bf6aff1f1e9a849bf4f9b81a (patch) | |
tree | 58c30f2f77ea7016184d66dda5e55b71119841fc | |
parent | cf4f5d79b3f004149c02cc1f7526e5af282a53b1 (diff) | |
download | pkgsrc-36207ddc6a396b36bf6aff1f1e9a849bf4f9b81a.tar.gz |
Optimize last change a bit.
-rw-r--r-- | graphics/xpm/Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/graphics/xpm/Makefile b/graphics/xpm/Makefile index 4ce55237dec..53b17977562 100644 --- a/graphics/xpm/Makefile +++ b/graphics/xpm/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.14 2000/11/25 08:38:03 tron Exp $ +# $NetBSD: Makefile,v 1.15 2000/11/25 08:42:04 tron Exp $ # DISTNAME= xpm-3.4k @@ -12,10 +12,9 @@ USE_IMAKE= yes .if !defined(CHECK_XPM) IS_BUILTIN_XPM!= ${MAKE} CHECK_XPM=YES USE_XPM=YES VARNAME=IS_BUILTIN_XPM show-var -.endif - -.if !defined(CHECK_XPM) && (${IS_BUILTIN_XPM} != "0") +.if (${IS_BUILTIN_XPM} != "0") IGNORE= "The Xpm library is included in your X11 distribution." .endif +.endif .include "../../mk/bsd.pkg.mk" |