summaryrefslogtreecommitdiff
path: root/lang/tcl83
diff options
context:
space:
mode:
authortv <tv>2005-03-08 13:04:14 +0000
committertv <tv>2005-03-08 13:04:14 +0000
commit132fcb5b6c5296d791b123f3398d79e58238f053 (patch)
tree8b544f29e75d252cea594a3e2fd48c0a519cfaf2 /lang/tcl83
parentb85e9faa7fe7acbbfbf1083bb9a289cb9888ad0a (diff)
downloadpkgsrc-132fcb5b6c5296d791b123f3398d79e58238f053.tar.gz
Actually, that conditional doesn't even need the !empty() now; just defined().
Diffstat (limited to 'lang/tcl83')
-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