[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

AW: checkout fails due to missing temp dir

From: Marc Aushold <rettkliff2_at_yahoo.de>
Date: 2006-10-28 12:19:26 CEST

Great, a good idea! I did so, and get this APR error code: apr_err=20014. I just googled, a lot of pages that I will have to check now :/. If someone knows what might be the reason, I would really appreciate any hints! I will notify the list if I solve the problem. Thanks! svn co http:/localhost/rep /home/dev/rep /root/subversion-1.4.0/subversion/libsvn_ra_dav/util.c:827: (apr_err=20014) svn: REPORT request failed on '/rep/!svn/vcc/default' /root/subversion-1.4.0/subversion/libsvn_ra_dav/util.c:389: (apr_err=20014) svn: Can't find a temporary directory: Error string not specified yet ----- Ursprüngliche Mail ---- Von: Garrett Rooney <rooneg_at_electricjellyfish.net> An: Marc Aushold <rettkliff2_at_yahoo.de> CC: users_at_subversion.tigris.org Gesendet: Freitag, den 27. Oktober 2006, 15:54:42 Uhr Betreff: Re: checkout fails due to missing temp dir On 10/27/06, Marc Aushold <rettkliff2_at_yahoo.de> wrote: > Thanks, Kenneth. I could have even hit on it on my own ;). So i did what you > suggested, and I found the error message here: > > subversion\libsvn_subr\.svn\text-base\io.c (line 619) > > Its inside the small function svn_io_temp_dir: > > svn_error_t * > svn_io_temp_dir(const char **dir, > apr_pool_t *pool) > { > apr_status_t apr_err = apr_temp_dir_get(dir, pool); > > if (apr_err) > return svn_error_wrap_apr(apr_err, _("Can't find a temporary > directory")); > > *dir = svn_path_canonicalize(*dir, pool); > > return svn_path_cstring_to_utf8(dir, *dir, pool); > } > > So the error appears at the call of apr_temp_dir_get what is a function of > the apr. I already suspected APR as reason of the error, grrr. > > First question: Is SVN incorrectly configured to APR? I think 'make' should > have failed, if that function ist unknown... What makes you say it's unknown? If the function wasn't there then you would get a linker error, not this kind of problem. What seems to be happening is that APR is failing to find your temp directory. Something within that function is causing it to return an error. > The function code is below, second question is if there is a possibility to > get the error message of the APR function - is it logged anywhere? I am a > linux novice and have problems to see through the logging mechanisms... ;) If you build Subversion with --enable-maintainer-mode it will include more information in the error, including the underlying APR error code, which might be helpful. -garrett --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscribe_at_subversion.tigris.org For additional commands, e-mail: users-help_at_subversion.tigris.org ___________________________________________________________ Telefonate ohne weitere Kosten vom PC zum PC: http://messenger.yahoo.de
Received on Sat Oct 28 12:20:04 2006

This is an archived mail posted to the Subversion Users mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.