diff options
author | tv <tv@pkgsrc.org> | 2005-03-08 17:24:45 +0000 |
---|---|---|
committer | tv <tv@pkgsrc.org> | 2005-03-08 17:24:45 +0000 |
commit | f9c81d397f13bc43d9e84040e85c1a3b8cc971cb (patch) | |
tree | 2d0045a9516dde15a99e03987c7eff2bb023e54f /x11/tk83 | |
parent | a1cd7a40b0dc13ff3bf8b046df6d85b960b480ad (diff) | |
download | pkgsrc-f9c81d397f13bc43d9e84040e85c1a3b8cc971cb.tar.gz |
Same fix as for tcl83 -- use defined() rather than !empty() here.
Diffstat (limited to 'x11/tk83')
-rw-r--r-- | x11/tk83/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/x11/tk83/Makefile b/x11/tk83/Makefile index 8e2ba4753ee..157dc4589c4 100644 --- a/x11/tk83/Makefile +++ b/x11/tk83/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2005/03/06 22:41:28 jschauma Exp $ +# $NetBSD: Makefile,v 1.3 2005/03/08 17:24:45 tv Exp $ DISTNAME= tk8.3.4 PKGNAME= tk-8.3.4 @@ -29,7 +29,7 @@ CONFIGURE_ARGS+= --mandir=${WRKDIR}/man .include "../../mk/bsd.prefs.mk" -.if !empty(ABI) && ${ABI} == "64" +.if defined(ABI) && ${ABI} == "64" CONFIGURE_ARGS+= --enable-64bit .endif |