For some reason cvsweb has decided to expand the /home/ncvs symlink and
this causes the $FreeBSD$ tags to get messed up. eg: * $FreeBSD: /c/ncvs/src/sys/i386/include/globals.h,v 1.17 ... $ instead of the correct: * $FreeBSD: src/sys/i386/include/globals.h,v 1.17 ... $ Change /home/ncvs to /c/ncvs in cvsweb.conf to compensate for this. :-( This is a temporary hack. Something changed in cvsweb that broke this.
This commit is contained in:
parent
2a7250b2d0
commit
4b9c3472f1
Notes:
svn2git
2020-12-08 03:00:23 +00:00
svn path=/www/; revision=9646
1 changed files with 3 additions and 3 deletions
|
@ -6,9 +6,9 @@
|
|||
# 1999 H. Nordstrom <hno@hem.passagen.se>
|
||||
# 2000-2001 A. MUSHA <knu@FreeBSD.org>
|
||||
# based on work by Bill Fenner <fenner@FreeBSD.org>
|
||||
# $Id: cvsweb.conf,v 1.19 2001-04-24 16:13:57 knu Exp $
|
||||
# $Id: cvsweb.conf,v 1.20 2001-06-18 22:27:55 peter Exp $
|
||||
# $Idaemons: /home/cvs/cvsweb/cvsweb.conf,v 1.24 2001/04/24 15:24:01 knu Exp $
|
||||
# $FreeBSD: www/en/cgi/cvsweb.conf,v 1.18 2001/03/22 19:55:46 knu Exp $
|
||||
# $FreeBSD: www/en/cgi/cvsweb.conf,v 1.19 2001/04/24 16:13:57 knu Exp $
|
||||
#
|
||||
###
|
||||
|
||||
|
@ -41,7 +41,7 @@ chomp($uname = `$CMD{uname}`);
|
|||
# 'symbolic_name' => ['name_to_display', 'path_to_the_actual_repository']
|
||||
# Listed in the order specified:
|
||||
@CVSrepositories = (
|
||||
'freebsd' => ['FreeBSD', '/home/ncvs'],
|
||||
'freebsd' => ['FreeBSD', '/c/ncvs'],
|
||||
'openbsd' => ['OpenBSD', '/usr/local/www/cvsroot/OpenBSD'],
|
||||
'netbsd' => ['NetBSD', '/usr/local/www/cvsroot/NetBSD'],
|
||||
'44bsdlite' => ['4.4BSD-Lite', '/e/4.4BSD-Lite/4.4BSD-Lite-CVS'],
|
||||
|
|
Loading…
Reference in a new issue