diff options
author | jlam <jlam> | 2004-09-15 03:59:17 +0000 |
---|---|---|
committer | jlam <jlam> | 2004-09-15 03:59:17 +0000 |
commit | eeeb16964efe38e563de4b11ec5124888e184849 (patch) | |
tree | d9d57d86cad42f7774e46121ed59e5c9bad5656a /mk | |
parent | 6fd1de05df398e927b271d15815afa480436e690 (diff) | |
download | pkgsrc-eeeb16964efe38e563de4b11ec5124888e184849.tar.gz |
Default PKG_FAIL_UNSUPPORTED_OPTIONS to "no" to match current practices
for using bsd.options.mk, which is:
PKG_DEFAULT_OPTIONS= <common options>
PKG_OPTIONS.<pkg>= ${PKG_DEFAULT_OPTIONS} <mods to defaults>
Diffstat (limited to 'mk')
-rw-r--r-- | mk/bsd.options.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mk/bsd.options.mk b/mk/bsd.options.mk index 64b1ffa5a37..acd0fdfb78c 100644 --- a/mk/bsd.options.mk +++ b/mk/bsd.options.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.options.mk,v 1.8 2004/08/22 19:42:10 jlam Exp $ +# $NetBSD: bsd.options.mk,v 1.9 2004/09/15 03:59:17 jlam Exp $ # # This Makefile fragment provides boilerplate code for standard naming # conventions for handling per-package build options. @@ -48,7 +48,7 @@ # If this is set to "yes", then the presence of unsupported # options in PKG_OPTIONS.<pkg> (see below) causes the build # to fail. Set this to "no" to silently ignore unsupported -# options. Default: "yes". +# options. Default: "no". # # After including this file, the following variables are defined: # @@ -131,7 +131,7 @@ _PKG_OPTIONS_VAR= _PKG_DEFAULT_OPTIONS # the variable named by ${PKG_OPTIONS_VAR} causes the build to fail. Set # this to "no" to silently ignore unsupported options. # -PKG_FAIL_UNSUPPORTED_OPTIONS?= yes +PKG_FAIL_UNSUPPORTED_OPTIONS?= no # Separate out the selected options into "positive" and "negative" lists. _PKG_YES_OPTIONS= # contains the "positive" options |