Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 22 Jun 2015 17:23:37 +0000 (UTC)
From:      Ed Maste <emaste@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r284703 - head/tools/build/options
Message-ID:  <201506221723.t5MHNbqD086958@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: emaste
Date: Mon Jun 22 17:23:36 2015
New Revision: 284703
URL: https://svnweb.freebsd.org/changeset/base/284703

Log:
  Report failing value from 'make showconfig' in build option script
  
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/tools/build/options/makeman

Modified: head/tools/build/options/makeman
==============================================================================
--- head/tools/build/options/makeman	Mon Jun 22 17:16:09 2015	(r284702)
+++ head/tools/build/options/makeman	Mon Jun 22 17:23:36 2015	(r284703)
@@ -46,7 +46,7 @@ show_options()
 				echo ${opt}
 				;;
 			*)
-				echo 'make showconfig broken' >&2
+				echo "make showconfig broken: ${val} is not yes or no" >&2
 				exit 1
 				;;
 			esac
@@ -107,7 +107,7 @@ show()
 			echo ${no_prefix}_${opt}
 			;;
 		*)
-			echo 'make showconfig broken' >&2
+			echo "make showconfig broken: ${val} is not yes or no" >&2
 			exit 1
 			;;
 		esac



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201506221723.t5MHNbqD086958>