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

Re: 1.3.0-rc3 tarballs up for testing/signing

From: Eric Gillespie <epg_at_pretzelnet.org>
Date: 2005-11-22 17:56:13 CET

Max Bowsher <maxb1@ukf.net> writes:

> This could have been very usefully used in the Subversion build system.
> Instead, we have to put up with copying files from srcdir to objdir, in
> a VPATH setup.

As someone who has built fairly complex build systems that
support srcdir != blddir using standard make, i'm skeptical.
I've never had to do that.

Though there is usually a better way to construct your rules, at
the bare minimum this transform always works:

  foo: ${srcdir}/bar ${srcdir}/baz ${srcdir}/quux
       foocmd $@ $<

to

  FOOSRC=${srcdir}/bar ${srcdir}/baz ${srcdir}/quux
  foo: ${FOOSRC}
       foocmd $@ ${FOOSRC}

Maybe you could point me to the relevant parts of our Makefile?

--
Eric Gillespie <*> epg@pretzelnet.org

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Tue Nov 22 17:57:37 2005

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.