svn commit: r326315 - head/release

Glen Barber gjb at FreeBSD.org
Tue Nov 28 16:00:28 UTC 2017


Author: gjb
Date: Tue Nov 28 16:00:27 2017
New Revision: 326315
URL: https://svnweb.freebsd.org/changeset/base/326315

Log:
  Set DISTDIR and WRKDIRPREFIX when building ports within the
  chroot(8) to avoid mtime changes within the ports checkout,
  which can cause checksum differences.
  
  MFC after:	3 days
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/release/release.sh

Modified: head/release/release.sh
==============================================================================
--- head/release/release.sh	Tue Nov 28 12:53:55 2017	(r326314)
+++ head/release/release.sh	Tue Nov 28 16:00:27 2017	(r326315)
@@ -280,6 +280,8 @@ extra_chroot_setup() {
 			PBUILD_FLAGS="OSVERSION=${_OSVERSION} BATCH=yes"
 			PBUILD_FLAGS="${PBUILD_FLAGS} UNAME_r=${UNAME_r}"
 			PBUILD_FLAGS="${PBUILD_FLAGS} OSREL=${REVISION}"
+			PBUILD_FLAGS="${PBUILD_FLAGS} WRKDIRPREFIX=/tmp/ports"
+			PBUILD_FLAGS="${PBUILD_FLAGS} DISTDIR=/tmp/distfiles"
 			chroot ${CHROOTDIR} make -C /usr/ports/textproc/docproj \
 				${PBUILD_FLAGS} OPTIONS_UNSET="FOP IGOR" \
 				FORCE_PKG_REGISTER=1 \


More information about the svn-src-all mailing list