aboutsummaryrefslogtreecommitdiff
path: root/share/tools
diff options
context:
space:
mode:
authorGlen Barber <gjb@FreeBSD.org>2013-11-07 21:16:35 +0000
committerGlen Barber <gjb@FreeBSD.org>2013-11-07 21:16:35 +0000
commit2117dcdcf25c1c14c30e5bc5d4846301f4f87778 (patch)
treebaf3efa8d2782355017eb993a0db5358f9fe8676 /share/tools
parent8642e8369110b9080936e9b7efadf019ca3766aa (diff)
downloaddoc-2117dcdcf25c1c14c30e5bc5d4846301f4f87778.tar.gz
doc-2117dcdcf25c1c14c30e5bc5d4846301f4f87778.zip
Add 'relnotes10/doc' and 'relnotes10/man4'.
Remove 'relnotes8/doc' and 'relnotes8/man4'. Fix a case where 'relnotes8/man4' was listed twice, and 'relnotes9/man4' was excluded. Approved by: doceng (implicit) Sponsored by: The FreeBSD Foundation
Notes
Notes: svn path=/head/; revision=43135
Diffstat (limited to 'share/tools')
-rw-r--r--share/tools/webupdate9
1 files changed, 5 insertions, 4 deletions
diff --git a/share/tools/webupdate b/share/tools/webupdate
index 12901d0007..f7d8d13d0c 100644
--- a/share/tools/webupdate
+++ b/share/tools/webupdate
@@ -86,8 +86,8 @@ WEBMAILTO=${WEBMAILTO:-${DEFAULT_WEBMAILTO}};
# 'doc', and not at all if they aren't.
subtrees='head
relnotes/doc relnotes/man4
+relnotes10/doc relnotes10/man4
relnotes9/doc relnotes9/man4
-relnotes8/doc relnotes8/man4
ports';
#
@@ -130,14 +130,15 @@ if [ $cond ]; then
test -d relnotes || mkdir relnotes;
svn co $SVNROOT/base/head/release/doc relnotes/doc >> $LOGFILE 2>&1 || exit 2;
svn co $SVNROOT/base/head/share/man/man4 relnotes/man4 >> $LOGFILE 2>&1 || exit 2;
+ svn co $SVNROOT/base/stable/10/release/doc relnotes10/doc >> $LOGFILE 2>&1 || exit 2;
+ svn co $SVNROOT/base/stable/10/share/man/man4 relnotes10/man4 >> $LOGFILE 2>&1 || exit 2;
svn co $SVNROOT/base/stable/9/release/doc relnotes9/doc >> $LOGFILE 2>&1 || exit 2;
svn co $SVNROOT/base/stable/9/share/man/man4 relnotes9/man4 >> $LOGFILE 2>&1 || exit 2;
- svn co $SVNROOT/base/stable/8/release/doc relnotes8/doc >> $LOGFILE 2>&1 || exit 2;
- svn co $SVNROOT/base/stable/8/share/man/man4 relnotes8/man4 >> $LOGFILE 2>&1 || exit 2;
svn co --depth immediates $SVNROOT/ports/head ports
rm -f $BUILDDIR/fullbuild-clean.flag
else
- for dir in head relnotes/doc relnotes/man4 ports relnotes9/doc relnotes8/doc relnotes8/man4 relnotes8/man4; do
+ for dir in head relnotes/doc relnotes/man4 ports relnotes10/doc \
+ relnotes10/man4 relnotes9/doc relnotes9/man4 ; do
svn cleanup $dir >> $LOGFILE 2>&1 || exit 2;
svn update --accept theirs-full $dir >> $LOGFILE 2>&1 || exit 2;
done