diff options
author | ache <ache@FreeBSD.org> | 1998-11-02 19:04:02 +0800 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1998-11-02 19:04:02 +0800 |
commit | 29f9291d3b2cda184246d655670fdfc7b9c7696d (patch) | |
tree | 68d244db852026ce9fc2604cb841082c86083b60 /www/webglimpse | |
parent | 3061d8cac4654bdff8452c088a30469ce8eb3c73 (diff) | |
download | freebsd-ports-gnome-29f9291d3b2cda184246d655670fdfc7b9c7696d.tar.gz freebsd-ports-gnome-29f9291d3b2cda184246d655670fdfc7b9c7696d.tar.zst freebsd-ports-gnome-29f9291d3b2cda184246d655670fdfc7b9c7696d.zip |
when can't open global .sitecache, open in in current directory
instead of in /tmp because conflict in multiuser system
Diffstat (limited to 'www/webglimpse')
-rw-r--r-- | www/webglimpse/files/patch-ah | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/www/webglimpse/files/patch-ah b/www/webglimpse/files/patch-ah new file mode 100644 index 000000000000..4a9db31cf31d --- /dev/null +++ b/www/webglimpse/files/patch-ah @@ -0,0 +1,11 @@ +--- lib/siteconf.pl.bak Thu Jul 23 01:44:21 1998 ++++ lib/siteconf.pl Mon Nov 2 13:58:29 1998 +@@ -28,7 +28,7 @@ + + # If can't write to preferred cache file, use alternate + if (!open(F,">$FCacheFile")) { +- $FCacheFile = "/tmp/.sitecache"; ++ $FCacheFile = ".sitecache"; + if (!open(F,">$FCacheFile")) { + print "Error, cannot find a usable cache file!\n"; + $FCacheFile = ''; |