diff options
author | jlam <jlam@pkgsrc.org> | 2004-08-22 19:32:51 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2004-08-22 19:32:51 +0000 |
commit | dfe460ba774f2a95167edac5ba4a3edb868d569d (patch) | |
tree | be106f064832dabfe855335adc4a7d14708a360a /devel | |
parent | 1b244d8d5ecef0e41548499a16a5812d4f65a208 (diff) | |
download | pkgsrc-dfe460ba774f2a95167edac5ba4a3edb868d569d.tar.gz |
Change the way that legacy USE_* and FOO_USE_* options are converted
into the bsd.options.mk framework. Instead of appending to
${PKG_OPTIONS_VAR}, it appends to PKG_DEFAULT_OPTIONS. This causes
the default options to be the union of PKG_DEFAULT_OPTIONS and any
old USE_* and FOO_USE_* settings.
This fixes PR pkg/26590.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/rt3/Makefile.options | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/devel/rt3/Makefile.options b/devel/rt3/Makefile.options index 6b1be87bead..b04a8ef1922 100644 --- a/devel/rt3/Makefile.options +++ b/devel/rt3/Makefile.options @@ -1,10 +1,10 @@ -# $NetBSD: Makefile.options,v 1.1.1.1 2004/08/03 15:33:50 cube Exp $ +# $NetBSD: Makefile.options,v 1.2 2004/08/22 19:32:51 jlam Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.rt PKG_SUPPORTED_OPTIONS= backend-mysql backend-pgsql \ frontend-modperl1 frontend-modperl2 \ frontend-fastcgi -PKG_DEFAULT_OPTIONS= backend-mysql frontend-fastcgi +PKG_DEFAULT_OPTIONS?= backend-mysql frontend-fastcgi .include "../../mk/bsd.options.mk" |