openbsd-ports/devel/cvsweb/patches/patch-cvsweb_cgi
naddy 4767e9b75b Update to 1.104.1.62.
- 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.
2001-01-12 00:13:08 +00:00

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 = $_;