Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 31 Dec 2018 08:23:13 +0000 (UTC)
From:      Glen Barber <gjb@FreeBSD.org>
To:        doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org
Subject:   svn commit: r52741 - head/en_US.ISO8859-1/htdocs/releases/12.0R
Message-ID:  <201812310823.wBV8NDqf081642@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: gjb
Date: Mon Dec 31 08:23:13 2018
New Revision: 52741
URL: https://svnweb.freebsd.org/changeset/doc/52741

Log:
  Do not look for 'RELEASE*' (including RELEASE-pNN) when evaluating
  if checksum files should be included.
  
  This case was specifically added to handle a case where a final
  release was a re-roll, i.e., 11.0-RELEASE was really 11.0-RELEASE-p1;
  this will need to be handled on a case-by-case basis.
  
  There be dragons.  Here lies Link.
  
  Reported by:	David Boyd
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/en_US.ISO8859-1/htdocs/releases/12.0R/Makefile

Modified: head/en_US.ISO8859-1/htdocs/releases/12.0R/Makefile
==============================================================================
--- head/en_US.ISO8859-1/htdocs/releases/12.0R/Makefile	Sun Dec 30 21:32:40 2018	(r52740)
+++ head/en_US.ISO8859-1/htdocs/releases/12.0R/Makefile	Mon Dec 31 08:23:13 2018	(r52741)
@@ -56,7 +56,11 @@ _ARM64_AARCH64?=PINE64 \
 		PINE64-LTS \
 		RPI3
 
-.if (${_BRANCH:MRC*} != "" || ${_BRANCH:MRELEASE*} != "")
+# Do not look for checksums if BRANCH != RC* or RELEASE.
+# Special handling will be needed for cases where BRANCH
+# is RELEASE-pNN, for example, the 11.0-RELEASE really being
+# 11.0-RELEASE-p1.
+.if (${_BRANCH:MRC*} != "" || ${_BRANCH:MRELEASE} != "")
 .for CHECKSUM in SHA512 SHA256
 . for _B in ${_BIGIRON}
 DATA+=		CHECKSUM.${CHECKSUM}-${THISRELEASE}-${_B}.asc



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