summaryrefslogtreecommitdiff
path: root/lang/tcl
diff options
context:
space:
mode:
authordmcmahill <dmcmahill>2005-03-08 00:26:31 +0000
committerdmcmahill <dmcmahill>2005-03-08 00:26:31 +0000
commitba90e2e72e7491a014376f5517a056f897fadbe0 (patch)
treef409e0cc65aa5b361037a80b38eebb9407e982af /lang/tcl
parent42c5212387036db958adfbf9ccbdf0e45afc0a09 (diff)
downloadpkgsrc-ba90e2e72e7491a014376f5517a056f897fadbe0.tar.gz
use defined() instead of !empty()
Diffstat (limited to 'lang/tcl')
-rw-r--r--lang/tcl/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/tcl/Makefile b/lang/tcl/Makefile
index f630b528ac3..162a99e1040 100644
--- a/lang/tcl/Makefile
+++ b/lang/tcl/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.47 2005/03/06 18:20:52 jschauma Exp $
+# $NetBSD: Makefile,v 1.48 2005/03/08 00:26:31 dmcmahill Exp $
DISTNAME= tcl${TCL_VERSION}-src
PKGNAME= tcl-${TCL_VERSION}
@@ -48,7 +48,7 @@ CONFIGURE_ENV+= TCL_PACKAGE_PATH="${VIEWBASE}/lib/tcl"
.endif
.endif
-.if !empty(ABI) && ${ABI} == "64"
+.if defined(ABI) && ${ABI} == "64"
CONFIGURE_ARGS+= --enable-64bit
.endif