On Mon, May 17, 2004 at 02:30:17PM +0100, Martin J. Evans wrote:
> /home/sources/subversion-1.0.2/ac-helpers/install-sh -c -m 644
> ../subversion-1.0.2/subversion/svnversion/svnversion.1
> /usr/local/man/man1/svnversion.1
> subversion/svnversion/svnversion ../subversion-1.0.2 /repos/svn/trunk >
> /usr/local/include/subversion-1/svn-revision.txt
> svn:
> '????????????????????????????????????????????????????????????????../subversion-1
> .0.2' does not exist
> make: 1254-004 The error code from the last command is 1.
Try this patch for apr-util:
Index: xlate/xlate.c
===================================================================
RCS file: /home/cvs/apr-util/xlate/xlate.c,v
retrieving revision 1.19
diff -u -r1.19 xlate.c
--- xlate/xlate.c 13 Feb 2004 09:55:27 -0000 1.19
+++ xlate/xlate.c 19 Mar 2004 01:06:48 -0000
@@ -132,6 +132,11 @@
convset->ich = (iconv_t)-1;
/* TODO: add the table to the cache */
+ } else {
+ /* reopen the iconv cd to get back to initial conversion
+ * state */
+ iconv_close(convset->ich);
+ convset->ich = iconv_open(convset->topage, convset->frompage);
}
}
#elif APU_HAVE_APR_ICONV
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Mon May 17 23:10:11 2004