diff options
author | jlam <jlam> | 2004-08-22 19:32:51 +0000 |
---|---|---|
committer | jlam <jlam> | 2004-08-22 19:32:51 +0000 |
commit | b1276828b47cd0e050c7db6a6dd702ffc806f96a (patch) | |
tree | be106f064832dabfe855335adc4a7d14708a360a /mail/qmail | |
parent | 4795460da1a16fd97804c0cfe23df962441269c8 (diff) | |
download | pkgsrc-b1276828b47cd0e050c7db6a6dd702ffc806f96a.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 'mail/qmail')
-rw-r--r-- | mail/qmail/options.mk | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/mail/qmail/options.mk b/mail/qmail/options.mk index c5674a1bc22..b57285a5ff0 100644 --- a/mail/qmail/options.mk +++ b/mail/qmail/options.mk @@ -1,9 +1,11 @@ +# $NetBSD: options.mk,v 1.2 2004/08/22 19:32:52 jlam Exp $ + .if ${OPSYS} == "Darwin" -PKG_OPTIONS.qmail+= darwin +PKG_DEFAULT_OPTIONS+= darwin .endif .if ${OPSYS} == "Linux" -PKG_OPTIONS.qmail+= netqmail # for the errno patches +PKG_DEFAULT_OPTIONS+= netqmail # for the errno patches .endif PKG_OPTIONS_VAR= PKG_OPTIONS.qmail |