diff options
author | fredb <fredb@pkgsrc.org> | 2005-04-04 23:38:57 +0000 |
---|---|---|
committer | fredb <fredb@pkgsrc.org> | 2005-04-04 23:38:57 +0000 |
commit | a118a9f747b0e4972de866267de081dfecb074ce (patch) | |
tree | d584c05966f791dde43050dc89d230a33bd5d7fe /editors | |
parent | 8a23b41b47398624c2cf0b71f2ff3cf7877bfcaa (diff) | |
download | pkgsrc-a118a9f747b0e4972de866267de081dfecb074ce.tar.gz |
"configure" now checks for gucharmap by default, picks it up, but then
fails to build with it (without the buildlink glue). Adapt by reversing
the sense of the check, and s/enable/disable/.
Diffstat (limited to 'editors')
-rw-r--r-- | editors/abiword/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/editors/abiword/Makefile b/editors/abiword/Makefile index 2ea10e59e6c..44ff9fbc751 100644 --- a/editors/abiword/Makefile +++ b/editors/abiword/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.87 2005/02/24 09:55:34 adam Exp $ +# $NetBSD: Makefile,v 1.88 2005/04/04 23:38:57 fredb Exp $ .include "Makefile.common" PKGNAME= abiword-${ABIWORD_VERSION} @@ -18,8 +18,8 @@ PKG_SUPPORTED_OPTIONS= gucharmap .include "../../mk/bsd.options.mk" .include "../../mk/bsd.prefs.mk" -.if !empty(PKG_OPTIONS:Mgucharmap) -CONFIGURE_ARGS+= --enable-gucharmap +.if empty(PKG_OPTIONS:Mgucharmap) +CONFIGURE_ARGS+= --disable-gucharmap .endif CONFIGURE_ARGS+= --with-sys-wv .if ${OPSYS} == "Darwin" |