summaryrefslogtreecommitdiff
path: root/mk/bsd.options.mk
diff options
context:
space:
mode:
authorjmmv <jmmv>2005-05-31 18:25:37 +0000
committerjmmv <jmmv>2005-05-31 18:25:37 +0000
commit403a5652e5f901a8da0364c75704a384cbee756f (patch)
treecabbf34d5c2b59645af68a667f2882fd4eaad331 /mk/bsd.options.mk
parent92108bbad013b8d2a01a0387042457ffb8b6c22c (diff)
downloadpkgsrc-403a5652e5f901a8da0364c75704a384cbee756f.tar.gz
PKG_FAIL_REASON must be (double-)quoted to achieve the correct output.
Diffstat (limited to 'mk/bsd.options.mk')
-rw-r--r--mk/bsd.options.mk4
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