Re: Need help understanding dependencies and destdir

2004-12-15 Thread James Abley
On Wed, 2004-12-15 at 13:02, Joel wrote: > James Abley wrote > > > On Wed, 2004-12-15 at 11:42, Joel wrote: > > > > For that last part, I think that you need to look at . > > > > Have a > > > > > > > > > > > > > > > > is not aware of dependencies and inheritance hierarchies. > > > > > > Is

Re: Need help understanding dependencies and destdir

2004-12-15 Thread Joel
James Abley wrote > On Wed, 2004-12-15 at 11:42, Joel wrote: > > > For that last part, I think that you need to look at . > > > Have a > > > > > > > > > > > > is not aware of dependencies and inheritance hierarchies. > > > > Is supposed to be able to tell when

Re: Need help understanding dependencies and destdir

2004-12-15 Thread James Abley
On Wed, 2004-12-15 at 11:42, Joel wrote: > > For that last part, I think that you need to look at . > > Have a > > > > > > > > is not aware of dependencies and inheritance hierarchies. > > Is supposed to be able to tell when a particular source file > is newer than its class file? > > --

Re: Need help understanding dependencies and destdir

2004-12-15 Thread Joel
> For that last part, I think that you need to look at . > Have a > > > > is not aware of dependencies and inheritance hierarchies. Is supposed to be able to tell when a particular source file is newer than its class file? -- Joel Rees <[EMAIL PROTECTED]

Re: Need help understanding dependencies and destdir

2004-12-14 Thread James Abley
For that last part, I think that you need to look at . Have a is not aware of dependencies and inheritance hierarchies. For the problem with destdir, I'm not sure. What output do you get from -verbose / -debug? On Tue, 2004-12-14 at 07:43, Joel wrote: > The following piece of my build.xml

Re: Need help understanding dependencies and destdir

2004-12-13 Thread Joel
On Tue, 14 Dec 2004 19:07:21 +0900 Joel <[EMAIL PROTECTED]> wrote > On Tue, 14 Dec 2004 08:14:15 + > James Abley <[EMAIL PROTECTED]> wrote > > > For that last part, I think that you need to look at . > > Where is that documented? (I see a dependset, but I think that'

Re: Need help understanding dependencies and destdir

2004-12-13 Thread James Abley
depend is an optional task, so it's documented at http://ant.apache.org/manual/OptionalTasks/depend.html That will get you going while I have a chance to look at targets that you sent. So, -debug shows that the ${dest} property is being set. Presumably, the directory exists? On Tue, 2004-12-1

Re: Need help understanding dependencies and destdir

2004-12-13 Thread Joel
On Tue, 14 Dec 2004 10:21:57 + James Abley <[EMAIL PROTECTED]> wrote > [...] > So, -debug shows that the ${dest} property is being set. Presumably, the > directory exists? Yeah, it's there. I have write permissions, too. I just ran out of time, so I'm going to get

Re: Need help understanding dependencies and destdir

2004-12-13 Thread Joel
On Tue, 14 Dec 2004 08:14:15 + James Abley <[EMAIL PROTECTED]> wrote > For that last part, I think that you need to look at . Where is that documented? (I see a dependset, but I think that's different?) I've been working with the depends attribute in targets, but tha