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 _______________________________________________ svn-src-head@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-head To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"