4767e9b75b
- Run "tar cf - ... | gzip -c" rather than "tar zcf - ..." to avoid tar(1)'s automatic padding of nulls to align with the block size, which is just garbage for a receiver. - Have $uname variable to hold the OS implementation name and wrap FreeBSD or OpenBSD specific features in conditional blocks using $uname. - Miscellaneous small fixes.
13 lines
424 B
Plaintext
13 lines
424 B
Plaintext
$OpenBSD: patch-cvsweb_cgi,v 1.7 2001/01/12 00:13:09 naddy Exp $
|
|
--- cvsweb.cgi.orig Thu Jan 11 03:00:55 2001
|
|
+++ cvsweb.cgi Thu Jan 11 18:16:07 2001
|
|
@@ -146,7 +146,7 @@ use File::Basename;
|
|
# Locations to search for user configuration, in order:
|
|
for (
|
|
"$mydir/cvsweb.conf",
|
|
- '/usr/local/etc/cvsweb/cvsweb.conf'
|
|
+ '%%SYSCONFDIR%%/cvsweb/cvsweb.conf'
|
|
) {
|
|
if (defined($_) && -r $_) {
|
|
$config = $_;
|