Leo28C wrote: > Hello everyone! :-D > > Hey, I installed Cygwin with the following options: > > Devel: Install > wget: (latest version) > > Now I'm trying to update a program (for coding the PSP) through SVN. The > tutorial I'm reading > (http://www.psp-programming.com/tutorials/c/lesson01.htm) says to execute > the command 'svn update', however that gives me some errors: > > [quote] > [EMAIL PROTECTED] ~/psptoolchain > $ svn update > svn: Can't parse '.svn/dir-prop-base' > svn: Malformed file > [/quote]
Probably a line ending problem, which is common with svn and svn-tools that try to be smart and use CR-LF on Windows. I assume you installed whatever you have under ~/psptoolchain from an image (.zip or .tar.gz file), if that is the case the solution would be to get rid of that and re-install using Cygwin's svn or leave it and use a GUI for svn (as it will probably use those line endings by default, but can be configured in many ways). You can check if that is the problem by looking at the file with `od -c .svn/dir-prop-base` or something else that will show the line endings, like `vi -b ...` > I asked on a PSP coding form and they suggested to reinstall, so I tried Yep, reinstall, reboot, reboot, reboot, and see if that helps... ;-) Don't you love all those "experts" posting to user groups? I may be wrong, by the way. > that. Nothing. Then I tried reinstalling all Cygwin. Nothing. Then I tried > installing SVN from here: > http://subversion.tigris.org/servlets/ProjectDocumentList?folderID=91 > > But that didn't work either, same error... :-( > > Anyone got a suggestion? Thanks! ;-) > > > PS: The dir-prop-base file is this: > > [quote] > K 10 > svn:ignore > V 80 > binutils-*.tar.gz > newlib-*.tar.gz > gdb-*.tar.gz > gcc-*.tar.bz2 > binutils-*.tar.gz > > > END > [/quote -- René Berber -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/