svn commit: r251811 - head/release

Glen Barber gjb at FreeBSD.org
Sun Jun 16 17:54:57 UTC 2013


Author: gjb
Date: Sun Jun 16 17:54:56 2013
New Revision: 251811
URL: http://svnweb.freebsd.org/changeset/base/251811

Log:
  Fix OSVERSION variable within PBUILD_FLAGS.
  
  Submitted by:	Garrett Cooper (in part)
  Approved by:	kib (mentor)
  MFC After:	1 week
  X-MFC-With:	r251652
  X-MFC-To:	stable/9 only

Modified:
  head/release/release.sh

Modified: head/release/release.sh
==============================================================================
--- head/release/release.sh	Sun Jun 16 16:29:23 2013	(r251810)
+++ head/release/release.sh	Sun Jun 16 17:54:56 2013	(r251811)
@@ -165,7 +165,7 @@ build_doc_ports() {
 	## Trick the ports 'run-autotools-fixup' target to do the right thing.
 	_OSVERSION=$(sysctl -n kern.osreldate)
 	if [ -d ${CHROOTDIR}/usr/doc ] && [ "x${NODOC}" != "x" ]; then
-		PBUILD_FLAGS="OSVERSION=${OSVERSION} WITHOUT_JADETEX=yes BATCH=yes"
+		PBUILD_FLAGS="OSVERSION=${_OSVERSION} WITHOUT_JADETEX=yes BATCH=yes"
 		chroot ${CHROOTDIR} make -C /usr/ports/textproc/docproj \
 			${PBUILD_FLAGS} install
 	fi


More information about the svn-src-head mailing list