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

Re: more autoconf patch questions, for Mo DeJong again

From: Greg Stein <gstein_at_lyra.org>
Date: 2001-10-05 05:20:08 CEST

On Thu, Oct 04, 2001 at 05:26:24PM -0700, Mo DeJong wrote:
> On Thu, 4 Oct 2001 18:43:08 -0500 <kfogel@collab.net> wrote:
>...
> > It was during the install step that I encountered an error:
> >
> > [...]
> > /home/kfogel/src/subversion/libtool: ./apr/build/install.sh: No such \
> > file or directory
> > make: *** [install-lib] Error 127
> > $
>
> It seems that $(INSTALL) is not fully qualified when building inside the srcdir.
> I never build in the srcdir so I would not have run into this problem. The following
> patch should fix it.
>
> Index: configure.in
> ===================================================================
> --- .svn/text-base/configure.in Wed Oct 3 13:26:50 2001
> +++ configure.in Thu Oct 4 17:21:22 2001
> @@ -136,7 +140,8 @@
> SVN_FIND_APACHE
>
> dnl ### should we ever bother with the system install?
> -INSTALL="\$(top_srcdir)/apr/build/install.sh -c"
> +full_top_srcdir=`cd $(top_srcdir) ; pwd`
> +INSTALL="\`$(full_top_srcdir)/apr/build/install.sh -c"
> AC_SUBST(INSTALL)
>
> dnl use APR's mkdir to enable creating intervening directories

Sigh.

That was in the patch that I posted. But it used $(abs_srcdir) rather than
creating yet another variable (full_top_srcdir).

I'll combine Mo's patch with my own and apply tonite. These little bits in
Mo's patches are annoying me, and I consider them to be rather sloppy.

Cheers,
-g

-- 
Greg Stein, http://www.lyra.org/
---------------------------------------------------------------------
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:44 2006

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

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