summaryrefslogtreecommitdiffstats
path: root/release/release.sh
diff options
context:
space:
mode:
authorgjb <gjb@FreeBSD.org>2013-12-05 00:59:29 +0000
committergjb <gjb@FreeBSD.org>2013-12-05 00:59:29 +0000
commit190b91ee4bb77aef895a84fdd7f8fd4956c12e0f (patch)
treec258d525c475a2ec5ab08cd547938af31e718933 /release/release.sh
parent9b21716e789d71e9d3a5c215afd3988ca03a4b32 (diff)
downloadFreeBSD-src-190b91ee4bb77aef895a84fdd7f8fd4956c12e0f.zip
FreeBSD-src-190b91ee4bb77aef895a84fdd7f8fd4956c12e0f.tar.gz
MFC r258786, r258796, r258797, r258847, r258853, r258949:
r258786: Move OPTIONS_UNSET outside of the PBUILD_FLAGS variable, otherwise the textproc/docproj port build fails. r258796 (hrs): - Prevent TARGET and TARGET_ARCH from being defined as empty when TARGET="" and/or TARGET_ARCH="" is specified. - Remove extra (). r258797 (hrs): Use standard CLEANFILES/CLEANDIRS and clean target in bsd.obj.mk. r258847: Provide reproducibility between builds by building pkg(8) from ports, instead of using pkg-bootstrap. This should resolve a problem that was discovered during 10.0-BETA4 freebsd-update(8) builds, r258853: Turn off the dvdrom target by default. dvd1.iso is now built by specifying 'WITH_DVD=1' during 'make release'. This caused some problems during the freebsd-update builds for 10.0-BETA4. r258949: Ensure WITH_DVD is not empty to prevent 'WITH_DVD= ' from evaluating to true. Approved by: re (hrs) Sponsored by: The FreeBSD Foundation
Diffstat (limited to 'release/release.sh')
-rwxr-xr-xrelease/release.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/release.sh b/release/release.sh
index 2baeeb5..9186c05 100755
--- a/release/release.sh
+++ b/release/release.sh
@@ -176,9 +176,9 @@ build_doc_ports() {
_OSVERSION=$(sysctl -n kern.osreldate)
if [ -d ${CHROOTDIR}/usr/doc ] && [ "x${NODOC}" = "x" ]; then
PBUILD_FLAGS="OSVERSION=${_OSVERSION} BATCH=yes"
- PBUILD_FLAGS="${PBUILD_FLAGS} OPTIONS_UNSET='FOP IGOR'"
+ PBUILD_FLAGS="${PBUILD_FLAGS}"
chroot ${CHROOTDIR} make -C /usr/ports/textproc/docproj \
- ${PBUILD_FLAGS} install clean distclean
+ ${PBUILD_FLAGS} OPTIONS_UNSET="FOP IGOR" install clean distclean
fi
}
OpenPOWER on IntegriCloud