Check out src/share/man/man4 directory used for generating
device listings in the hardware notes.
This commit is contained in:
parent
3be1fe7ba4
commit
907f14c1b8
Notes:
svn2git
2020-12-08 03:00:23 +00:00
svn path=/www/; revision=21353
1 changed files with 6 additions and 2 deletions
|
@ -31,7 +31,7 @@
|
|||
# 2 - failure in CVS operations
|
||||
# 3 - failure in make operations
|
||||
#
|
||||
# $FreeBSD: www/tools/webupdate,v 1.9 2001/08/31 17:39:07 dd Exp $
|
||||
# $FreeBSD: www/tools/webupdate,v 1.10 2003/11/18 11:00:54 kuriyama Exp $
|
||||
#
|
||||
|
||||
#
|
||||
|
@ -73,7 +73,7 @@ WEBMAILTO=${WEBMAILTO:-${DEFAULT_WEBMAILTO}};
|
|||
# assumes that the directory right below that is the language code.
|
||||
# This works fine if all the languages are in a directory called
|
||||
# 'doc', and not at all if they aren't.
|
||||
subtrees='www doc relnotes/doc relnotes4/doc';
|
||||
subtrees='www doc relnotes/doc relnotes/man4 relnotes4/doc relnotes4/man4';
|
||||
|
||||
#
|
||||
# Update the checked out copies. Check out new copies every Sunday or
|
||||
|
@ -108,9 +108,13 @@ if [ $cond ]; then
|
|||
test -d relnotes || mkdir relnotes;
|
||||
cvs -qR checkout -Pd relnotes/doc src/release/doc >> \
|
||||
$LOGFILE 2>&1 || exit 2;
|
||||
cvs -qR checkout -Pd relnotes/man4 src/share/man/man4 >> \
|
||||
$LOGFILE 2>&1 || exit 2;
|
||||
test -d relnotes4 || mkdir relnotes4;
|
||||
cvs -qR checkout -Pd relnotes4/doc -rRELENG_4 src/release/doc >> \
|
||||
$LOGFILE 2>&1 || exit 2;
|
||||
cvs -qR checkout -Pd relnotes4/man4 -rRELENG_4 src/share/man/man4 >> \
|
||||
$LOGFILE 2>&1 || exit 2;
|
||||
else
|
||||
cvs -qR update -dP $subtrees >> $LOGFILE 2>&1 || exit 2;
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue