summaryrefslogtreecommitdiff
path: root/x11/tk83
diff options
context:
space:
mode:
authortv <tv>2005-03-08 17:24:45 +0000
committertv <tv>2005-03-08 17:24:45 +0000
commitd9c99df8308516bb5323c5652e54000f16517d69 (patch)
tree2d0045a9516dde15a99e03987c7eff2bb023e54f /x11/tk83
parent3c81a0072df169a47fdefdd090d2321aebbb90fe (diff)
downloadpkgsrc-d9c99df8308516bb5323c5652e54000f16517d69.tar.gz
Same fix as for tcl83 -- use defined() rather than !empty() here.
Diffstat (limited to 'x11/tk83')
-rw-r--r--x11/tk83/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/x11/tk83/Makefile b/x11/tk83/Makefile
index 8e2ba4753ee..157dc4589c4 100644
--- a/x11/tk83/Makefile
+++ b/x11/tk83/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.2 2005/03/06 22:41:28 jschauma Exp $
+# $NetBSD: Makefile,v 1.3 2005/03/08 17:24:45 tv Exp $
DISTNAME= tk8.3.4
PKGNAME= tk-8.3.4
@@ -29,7 +29,7 @@ CONFIGURE_ARGS+= --mandir=${WRKDIR}/man
.include "../../mk/bsd.prefs.mk"
-.if !empty(ABI) && ${ABI} == "64"
+.if defined(ABI) && ${ABI} == "64"
CONFIGURE_ARGS+= --enable-64bit
.endif