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
commitb474be3890e49ddadd53539a9c8a670ebf2a31ac (patch)
treef409e0cc65aa5b361037a80b38eebb9407e982af /lang
parenta54c6ad81dec36751a20429a40005a7de06a7635 (diff)
downloadpkgsrc-b474be3890e49ddadd53539a9c8a670ebf2a31ac.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