Re: checkout fails due to missing temp dir
From: Marc Aushold <rettkliff2_at_yahoo.de>
 
Date: 2006-10-27 10:45:49 CEST 
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 *
   if (apr_err)
   *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...
 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... ;)
 APR_DECLARE(apr_status_t) apr_temp_dir_get(const char **temp_dir, 
     /* Our goal is to find a temporary directory suitable for writing
           $TMP
        NOTE: This algorithm is basically the same one used by Python
     /* Try the environment first. */
     /* Next, try a set of hard-coded paths. */
     /* We didn't find a suitable temp dir anywhere */
 end:
 Kenneth Porter <shiva@sewingwitch.com> schrieb: --On Thursday, October 26, 2006 2:49 PM +0200 Marc Aushold 
 > I just rebuilt the sources with apr 1.2.7, but that did not solve the
 I recommend grepping the sources for the error message, then looking around 
 ---------------------------------------------------------------------
                  
  | 
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.