Problem with SVN access

Discuss the development of new homebrew software, tools and libraries.

Moderators: cheriff, TyRaNiD

Post Reply
monkeymagic
Posts: 6
Joined: Wed Oct 05, 2005 6:09 am

Problem with SVN access

Post by monkeymagic »

Hi folks,

I'm trying to get SDL up and running, but before I even get that far I seem to have trouble checking it out of svn. I do svn co svn://svn.ps2dev.org/psp/trunk/SDL but it only gets so far before this fatal error:

svn: Can't move 'SDL/src/main/.svn/tmp/entries' to 'SDL/src/main/.svn/entries':
Permission denied

Bizarrely this seems to happen going back to earlier versions, so I don't know if I'm doing something wrong here. I'm using Cygwin with toolchain.sh installed.
jimparis
Posts: 1145
Joined: Fri Jun 10, 2005 4:21 am
Location: Boston

Post by jimparis »

It's some sort of Windows permission problem; svn creates file A, creates file B, then tries to move B over A, and is getting an error. I don't have any idea how to fix that, though. Make sure you're checking this out in an empty directory, maybe. Or you might try something like

Code: Select all

mkdir newdir
chmod 777 newdir
chown $USER newdir
cd newdir
svn co svn://svn.ps2dev.org/psp/trunk/SDL
monkeymagic
Posts: 6
Joined: Wed Oct 05, 2005 6:09 am

Wierd

Post by monkeymagic »

It is really strange. I have no problems with checking out on my FreeBSD box, and I have no problems with some projects on Cygwin, but SDL and Python both barf under windows.

So I guess the easiest fix is to go for a Linux/BSD box and cross fingers, or do what you did above.
Post Reply