diff options
author | jmmv <jmmv@pkgsrc.org> | 2005-05-31 18:25:37 +0000 |
---|---|---|
committer | jmmv <jmmv@pkgsrc.org> | 2005-05-31 18:25:37 +0000 |
commit | 33a592167e7d914e8a8c6e52d78f2f9b448e38fa (patch) | |
tree | cabbf34d5c2b59645af68a667f2882fd4eaad331 /mk | |
parent | 3e813bd0e02ccdb26aad23926c27dca2f2fe7cc8 (diff) | |
download | pkgsrc-33a592167e7d914e8a8c6e52d78f2f9b448e38fa.tar.gz |
PKG_FAIL_REASON must be (double-)quoted to achieve the correct output.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/bsd.options.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/bsd.options.mk b/mk/bsd.options.mk index a5acb1077f0..36f71f08b42 100644 --- a/mk/bsd.options.mk +++ b/mk/bsd.options.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.options.mk,v 1.29 2005/05/31 16:03:41 wiz Exp $ +# $NetBSD: bsd.options.mk,v 1.30 2005/05/31 18:25:37 jmmv Exp $ # # This Makefile fragment provides boilerplate code for standard naming # conventions for handling per-package build options. @@ -181,7 +181,7 @@ PKG_OPTIONS:= ${PKG_OPTIONS} ${_popt_} .undef _popt_ .if !empty(_OPTIONS_UNSUPPORTED) -PKG_FAIL_REASON:=The following selected options are not supported: ${_OPTIONS_UNSUPPORTED:O:u:Q} +PKG_FAIL_REASON:= "The following selected options are not supported: ${_OPTIONS_UNSUPPORTED:O:u:Q}." .endif .undef _OPTIONS_UNSUPPORTED |