On Sep 6, 2006, at 00:14, Daniel Gehriger wrote:
> I'm still trying to get svn to work on my SuSE 9.0 box. This seems
> to be impossible. All combinations, svn 1.3.0, 1.3.2, with /
> without bdb, and so on simply don't work.
>
> For instance, I built svn 1.3.2 from the sources. Then executed the
> following commands:
>
> # cd /tmp
> # mkdir foo
> # echo "Test" > foo/test
> # svnadmin create testrepos
> # cd foo
> # svn import -m "Test" file:///tmp/testrepos/
>
> and I get the following message:
>
> svn: Can't detect MIME type of non-file 'svn_io_get_dirents2'
>
> This happens with all svn versions I have compiled so far (1.3.0
> and 1.3.2). What's going on here ? I already spent 12 hours trying
> to get svn to work. This should really be simpler...
I don't know what to say. Your recipe works for me with Subversion
1.3.2 on Mac OS X 10.4.7 PPC.
$ cd /tmp
$ mkdir foo
$ echo "Test" > foo/test
$ svnadmin create testrepos
$ cd foo
$ svn import -m "Test" file:///tmp/testrepos/
svn: The log message is a pathname (was -F intended?); use '--force-
log' to override
$ svn import -m "Testing" file:///tmp/testrepos/
Adding test
Committed revision 1.
$ svn ls file:///tmp/testrepos/
test
$
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Wed Sep 6 00:48:12 2006