summaryrefslogtreecommitdiff
path: root/lang
diff options
context:
space:
mode:
authordmcmahill <dmcmahill@pkgsrc.org>2005-03-08 00:26:31 +0000
committerdmcmahill <dmcmahill@pkgsrc.org>2005-03-08 00:26:31 +0000
commit010e59b2b2c7428c6be5f55d173b2cc31e60ee58 (patch)
treef409e0cc65aa5b361037a80b38eebb9407e982af /lang
parent71e2654fa31923b68daf2f28ba73fbe6ac59389a (diff)
downloadpkgsrc-010e59b2b2c7428c6be5f55d173b2cc31e60ee58.tar.gz
use defined() instead of !empty()
Diffstat (limited to 'lang')
-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