summaryrefslogtreecommitdiffstats
path: root/release/release.sh
diff options
context:
space:
mode:
authorgjb <gjb@FreeBSD.org>2013-11-30 23:56:26 +0000
committergjb <gjb@FreeBSD.org>2013-11-30 23:56:26 +0000
commite5b8a30889412ba947f8e981a5a1ae45652951d4 (patch)
treead3a946ee798c5e7f6a48b6e5c741f156c5070a4 /release/release.sh
parent9a51d4481d9630963966a5871e799c43d9c8f292 (diff)
downloadFreeBSD-src-e5b8a30889412ba947f8e981a5a1ae45652951d4.zip
FreeBSD-src-e5b8a30889412ba947f8e981a5a1ae45652951d4.tar.gz
Move OPTIONS_UNSET outside of the PBUILD_FLAGS variable, otherwise the
textproc/docproj port build fails. Pointyhat: gjb MFC after: 3 days X-Before-RC1: yes 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 3644150..8db84d7 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