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 | bc6f431aed5410779d62031b3c5587f6cc6fe803 (patch) | |
tree | 2d0045a9516dde15a99e03987c7eff2bb023e54f /x11 | |
parent | 2f0dde48d355b91a3393832b0d3f68b5bfd041e8 (diff) | |
download | pkgsrc-bc6f431aed5410779d62031b3c5587f6cc6fe803.tar.gz |
Same fix as for tcl83 -- use defined() rather than !empty() here.
Diffstat (limited to 'x11')
-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 |