> diff -u -r1.87 configure.in
> --- configure.in 2001/06/04 06:55:50 1.87
> +++ configure.in 2001/06/04 19:24:37
> @@ -105,7 +105,7 @@
> SVN_FIND_APACHE
>
> dnl ### should we ever bother with the system install?
> -INSTALL="$top_srcdir/apr/build/install.sh"
> +INSTALL="\$top_srcdir/apr/build/install.sh"
> AC_SUBST(INSTALL)
Woops, sorry I screwed this patch up. Here is
the correct patch.
Index: configure.in
===================================================================
RCS file:
/usr/local/tigris/data/helm/cvs/repository/subversion/configure.in,v
retrieving revision 1.87
diff -u -r1.87 configure.in
--- configure.in 2001/06/04 06:55:50 1.87
+++ configure.in 2001/06/04 23:13:02
@@ -105,7 +114,7 @@
SVN_FIND_APACHE
dnl ### should we ever bother with the system install?
-INSTALL="$top_srcdir/apr/build/install.sh"
+INSTALL="\$(top_srcdir)/apr/build/install.sh"
AC_SUBST(INSTALL)
dnl use APR's mkdir to enable creating intervening directories
Also, there is a problem installing .h files from a build directory.
This sort of entry in build-outputs.mk:
$(INSTALL_INCLUDE) subversion/include/svn_base64.h $(includedir)/svn_base64.h
Needs to be:
$(INSTALL_INCLUDE) $(top_srcdir)/subversion/include/svn_base64.h $(includedir)/svn_base64.h
Mo DeJong
Red Hat Inc
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Sat Oct 21 14:36:31 2006