summaryrefslogtreecommitdiff
path: root/lang
diff options
context:
space:
mode:
authortv <tv@pkgsrc.org>2005-03-08 13:04:14 +0000
committertv <tv@pkgsrc.org>2005-03-08 13:04:14 +0000
commit5ab9d5914eb3b35e09a3c0c815490a8eed2b9735 (patch)
tree8b544f29e75d252cea594a3e2fd48c0a519cfaf2 /lang
parent675241cf8b39471e72a6a3cb7fd34df75a0dfdc8 (diff)
downloadpkgsrc-5ab9d5914eb3b35e09a3c0c815490a8eed2b9735.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