summaryrefslogtreecommitdiff
path: root/lang
diff options
context:
space:
mode:
authortv <tv>2005-03-08 13:04:14 +0000
committertv <tv>2005-03-08 13:04:14 +0000
commitd35d48f7ea2e15b860e94af3c848444b1769ddef (patch)
tree8b544f29e75d252cea594a3e2fd48c0a519cfaf2 /lang
parentd23cebb6e9447b695132d4bcc2c4fc9818fc98db (diff)
downloadpkgsrc-d35d48f7ea2e15b860e94af3c848444b1769ddef.tar.gz
Actually, that conditional doesn't even need the !empty() now; just defined().
Diffstat (limited to 'lang')
-rw-r--r--lang/tcl83/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/tcl83/Makefile b/lang/tcl83/Makefile
index a105bf60d98..00555f0b491 100644
--- a/lang/tcl83/Makefile
+++ b/lang/tcl83/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.5 2005/03/08 13:03:23 tv Exp $
+# $NetBSD: Makefile,v 1.6 2005/03/08 13:04:14 tv Exp $
#
DISTNAME= tcl8.3.4
@@ -45,7 +45,7 @@ CONFIGURE_ENV+= TCL_PACKAGE_PATH="${VIEWBASE}/lib/tcl"
CONFIGURE_ENV+= COMPILER_OPTIMIZATION_BUG=YES
.endif
-.if defined(ABI) && !empty(ABI) && ${ABI} == "64"
+.if defined(ABI) && ${ABI} == "64"
CONFIGURE_ARGS+= --enable-64bit
.endif