Not sure how to resolve this
- On Linux I have a mounted folder (sshfs src tgt). SVN has lots of trouble with this and I found that using a rename workaround resolves this issue.
sshfs -o workaround=rename 192.168.3.10:/var/dev_linux /home/buildmaster/dev/
- Still I’m unable to run make install from these folders. Running as the local user I don’t have write permissions to /usr/local/lib. Running as root (sudo) I don’t have to the files on the mounted folder…

November 19th, 2008 at 2:19 pm
That’s the workaround I was looking for! First hit on Google (”svn sshfs”)
Thank you very much.
To access sshfs-mounts as root you might want to try “-o allow_root”. HTH