svn commit: r284703 - head/tools/build/options

Ed Maste emaste at FreeBSD.org
Mon Jun 22 17:23:37 UTC 2015


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


More information about the svn-src-head mailing list