From 907f14c1b8d032e153cd9e46271dec66ed120036 Mon Sep 17 00:00:00 2001 From: Hiroki Sato Date: Sun, 4 Jul 2004 14:33:58 +0000 Subject: [PATCH] Check out src/share/man/man4 directory used for generating device listings in the hardware notes. --- tools/webupdate | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/tools/webupdate b/tools/webupdate index 31031b933d..82632cd993 100644 --- a/tools/webupdate +++ b/tools/webupdate @@ -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