diff options
author | Roy Marples <uberlord@gentoo.org> | 2005-10-17 13:00:07 +0000 |
---|---|---|
committer | Roy Marples <uberlord@gentoo.org> | 2005-10-17 13:00:07 +0000 |
commit | 982b258b34bb3fda0a4247660c95e28149691f9a (patch) | |
tree | 60fbb89f27181d261e7b3c3b7aa4421c356d2df3 /www-apps/websvn/files/websvn-1.61-issue32.patch | |
parent | Mark 0.40.3-r2 stable on ia64 (diff) | |
download | gentoo-2-982b258b34bb3fda0a4247660c95e28149691f9a.tar.gz gentoo-2-982b258b34bb3fda0a4247660c95e28149691f9a.tar.bz2 gentoo-2-982b258b34bb3fda0a4247660c95e28149691f9a.zip |
Fixed an issue with German characters - thanks to Lars Teifland for an almost
working patch, #65351
Fixed the error svn: Cant check path /root/.subversion: Permission denied (websvn issue 32)
(Portage version: 2.0.53_rc5)
Diffstat (limited to 'www-apps/websvn/files/websvn-1.61-issue32.patch')
-rw-r--r-- | www-apps/websvn/files/websvn-1.61-issue32.patch | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/www-apps/websvn/files/websvn-1.61-issue32.patch b/www-apps/websvn/files/websvn-1.61-issue32.patch new file mode 100644 index 000000000000..7b85f005b706 --- /dev/null +++ b/www-apps/websvn/files/websvn-1.61-issue32.patch @@ -0,0 +1,22 @@ +Index: include/configclass.inc +=================================================================== +--- include/configclass.inc (revision 328) ++++ include/configclass.inc (working copy) +@@ -190,7 +190,7 @@ + // Tool path locations
+
+ var $svnlook = "svnlook";
+- var $svn = "svn --non-interactive";
++ var $svn = "svn --non-interactive --config-dir /tmp";
+ var $diff = "diff";
+ var $enscript ="enscript";
+ var $sed = "sed";
+@@ -436,7 +436,7 @@ +
+ function setSVNCommandPath($path)
+ {
+- $this->setPath($this->svn, $path, "svn");
++ $this->setPath($this->svn, $path, "svn --non-interactive --config-dir /tmp");
+ $this->setPath($this->svnlook, $path, "svnlook");
+ }
+
|