diff options
author | rillig <rillig@pkgsrc.org> | 2005-10-23 14:16:46 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2005-10-23 14:16:46 +0000 |
commit | 09790e487cd5faee21a96f3c5790d52c336a92a0 (patch) | |
tree | a7e7c2e0d18e1fdbc2b3703f1127c927b4fb7928 /editors | |
parent | d6824d8aba69598ec517e3c87bc10522ba88369a (diff) | |
download | pkgsrc-09790e487cd5faee21a96f3c5790d52c336a92a0.tar.gz |
Append things to CONFIGURE_ARGS instead of overwriting them. Found by
pkglint.
Diffstat (limited to 'editors')
-rw-r--r-- | editors/xemacs/options.mk | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/editors/xemacs/options.mk b/editors/xemacs/options.mk index f022b43eccb..9f7269496bd 100644 --- a/editors/xemacs/options.mk +++ b/editors/xemacs/options.mk @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.4 2005/03/03 16:16:03 uebayasi Exp $ +# $NetBSD: options.mk,v 1.5 2005/10/23 14:16:46 rillig Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.xemacs PKG_SUPPORTED_OPTIONS= ldap xface canna @@ -6,24 +6,24 @@ PKG_SUPPORTED_OPTIONS= ldap xface canna .include "../../mk/bsd.options.mk" .if !empty(PKG_OPTIONS:Mldap) -CONFIGURE_ARGS= --with-ldap +CONFIGURE_ARGS+= --with-ldap . include "../../databases/openldap/buildlink3.mk" .else -CONFIGURE_ARGS= --without-ldap +CONFIGURE_ARGS+= --without-ldap .endif .if !empty(PKG_OPTIONS:Mxface) -CONFIGURE_ARGS= --with-xface +CONFIGURE_ARGS+= --with-xface . include "../../mail/faces/buildlink3.mk" .else -CONFIGURE_ARGS= --without-xface +CONFIGURE_ARGS+= --without-xface .endif .if !empty(PKG_OPTIONS:Mcanna) . include "../../inputmethod/canna-lib/buildlink3.mk" -CONFIGURE_ARGS= --with-canna +CONFIGURE_ARGS+= --with-canna PLIST_SUBST+= FOR_MULE='' .else -CONFIGURE_ARGS= --without-canna +CONFIGURE_ARGS+= --without-canna PLIST_SUBST+= FOR_MULE='@comment ' .endif |