Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 13 Nov 2018 19:51:22 +0000 (UTC)
From:      Glen Barber <gjb@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r340406 - head/release/scripts
Message-ID:  <201811131951.wADJpMgV067238@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: gjb
Date: Tue Nov 13 19:51:22 2018
New Revision: 340406
URL: https://svnweb.freebsd.org/changeset/base/340406

Log:
  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.
  
  Noticed by:	rgrimes
  MFC after:	2 days
  MFC before:	12.0-RC1
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/release/scripts/make-manifest.sh

Modified: head/release/scripts/make-manifest.sh
==============================================================================
--- head/release/scripts/make-manifest.sh	Tue Nov 13 19:44:40 2018	(r340405)
+++ head/release/scripts/make-manifest.sh	Tue Nov 13 19:51:22 2018	(r340406)
@@ -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}"
 			;;



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