svn commit: r340457 - stable/12/release/scripts

Glen Barber gjb at FreeBSD.org
Thu Nov 15 16:43:00 UTC 2018


Author: gjb
Date: Thu Nov 15 16:42:59 2018
New Revision: 340457
URL: https://svnweb.freebsd.org/changeset/base/340457

Log:
  MFC r340406:
  
   The roff ascii.gz documentation installed to /usr/share/doc
   was removed in r318881 when roff was removed from the base
   system.
  
   This results in the doc.txz distribution set containing a
   single directory (./) which is empty.
  
   Remove the "Additional documentation" option from the menu
   selection of bsdinstall(8), as the plain-text documentation
   installed in /usr/share/doc is installed as part of the
   packageworld target.
  
   The doc entry has not been removed from EXTRA_DISTRIBUTIONS
   in Makefile.inc1, in case its removal triggers an issue with
   freebsd-update(8), which is currently aware of the world/doc
   component, so the empty doc.txz continues to be created as
   a precaution.
  
  Approved by:	re (rgrimes)
  Sponsored by:	The FreeBSD Foundation

Modified:
  stable/12/release/scripts/make-manifest.sh
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/release/scripts/make-manifest.sh
==============================================================================
--- stable/12/release/scripts/make-manifest.sh	Thu Nov 15 16:29:27 2018	(r340456)
+++ stable/12/release/scripts/make-manifest.sh	Thu Nov 15 16:42:59 2018	(r340457)
@@ -51,6 +51,9 @@ for i in ${*}; do
 	desc="$(eval echo \"\${desc_${distname}}\")"
 
 	case ${i} in
+		doc.txz)
+			continue
+			;;
 		kernel-dbg.txz)
 			desc="${desc_kernel_dbg}"
 			;;


More information about the svn-src-stable-12 mailing list