Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 15 May 2017 13:41:38 +0000 (UTC)
From:      Ed Maste <emaste@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org
Subject:   svn commit: r318288 - stable/11/tools/build/options
Message-ID:  <201705151341.v4FDfcln031841@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: emaste
Date: Mon May 15 13:41:38 2017
New Revision: 318288
URL: https://svnweb.freebsd.org/changeset/base/318288

Log:
  MFC r317156: makeman: add a comment describing purpose and invocation
  
  Sponsored by:	The FreeBSD Foundation

Modified:
  stable/11/tools/build/options/makeman
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/tools/build/options/makeman
==============================================================================
--- stable/11/tools/build/options/makeman	Mon May 15 13:14:13 2017	(r318287)
+++ stable/11/tools/build/options/makeman	Mon May 15 13:41:38 2017	(r318288)
@@ -1,8 +1,22 @@
 #!/bin/sh
 #
 # This file is in the public domain.
-#
 # $FreeBSD$
+#
+# This script is used to create the src.conf.5 man page, using template text
+# contained herein and the contents of the WITH_* and WITHOUT_* files in the
+# same directory. Each WITH_* and WITHOUT_* file documents the effect of the
+# /etc/src.conf knob with the same name.
+#
+# This script invokes "make showconfig" for each supported architecture in
+# order to determine, for each option, whether the default setting is always
+# WITH, always WITHOUT, or is architecture-dependent. It also determines
+# and describes dependencies between options.
+#
+# Usage:
+#
+#     cd tools/build/options
+#     sh makeman > ../../../share/man/man5/src.conf.5
 
 set -o errexit
 export LC_ALL=C
@@ -121,7 +135,7 @@ main()
 
 	fbsdid='$'FreeBSD'$'
 	cat <<EOF
-.\" DO NOT EDIT-- this file is automatically generated.
+.\" DO NOT EDIT-- this file is generated by tools/build/options/makeman.
 .\" ${fbsdid}
 .Dd $(echo $(LC_TIME=C date +'%B %e, %Y'))
 .Dt SRC.CONF 5



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