aboutsummaryrefslogtreecommitdiff
path: root/share/tools/webupdate
diff options
context:
space:
mode:
Diffstat (limited to 'share/tools/webupdate')
-rw-r--r--share/tools/webupdate10
1 files changed, 4 insertions, 6 deletions
diff --git a/share/tools/webupdate b/share/tools/webupdate
index e63edaa970..0325d95e9e 100644
--- a/share/tools/webupdate
+++ b/share/tools/webupdate
@@ -2,7 +2,7 @@
# Copyright (c) 2001 Wolfram Schneider <wosch@FreeBSD.org>
# Copyright (c) 2001 Dima Dorfman <dd@FreeBSD.org>
#
-# Update the FreeBSD web site from the CVS repository.
+# Update the FreeBSD web site from the SVN repository.
#
#
# NOTE: Changes to this file is NOT automatically used for the web
@@ -14,7 +14,7 @@
# Major variables:
#
# PATH - The search path as interpreted by the shell.
-# CVSROOT - Path to the FreeBSD CVS repository.
+# SVNROOT - Path to the FreeBSD SVN repository.
# BUILDDIR - Where the checked out copies of the files are stored.
# DESTDIR - Where the rendered copies should wind up.
# LOGFILE - Name of the log file to use (in $BUILDDIR).
@@ -22,7 +22,7 @@
# INSTARGS - Arguments to pass to make(1) when installing.
# WEBMAILTO - Address to send mail to if the build fails.
#
-# subtrees - List of directores in $BUILDDIR which are from CVS.
+# subtrees - List of directores in $BUILDDIR which are from SVN.
#
# Variables which are in uppercase are derived from the environment
# unless they don't exist, in which case a value suitable for
@@ -34,7 +34,7 @@
#
# 0 - success
# 1 - unknown failure
-# 2 - failure in CVS operations
+# 2 - failure in SVN operations
# 3 - failure in make operations
#
# $FreeBSD$
@@ -44,7 +44,6 @@
# Default configuration.
#
DEFAULT_PATH=/bin:/usr/bin:/usr/local/bin;
-DEFAULT_CVSROOT=/home/ncvs;
DEFAULT_SVNROOT=svn://svn.FreeBSD.org/doc/head
DEFAULT_BUILDDIR=/usr/local/www/build;
#DEFAULT_LOGDIR=/usr/local/www/build/log;
@@ -61,7 +60,6 @@ DEFAULT_WEBMAILTO=freebsd-doc;
# Variable setup.
#
PATH=${PATH:-${DEFAULT_PATH}}; export PATH;
-CVSROOT=${CVSROOT:-${DEFAULT_CVSROOT}}; export CVSROOT;
SVNROOT=${SVNROOT:-${DEFAULT_SVNROOT}}; export SVNROOT;
BUILDDIR=${BUILDDIR:-${DEFAULT_BUILDDIR}};
LOGDIR=${LOGDIR:-${DEFAULT_LOGDIR}};