Return-Path: Mailing-List: contact ant-user-help@jakarta.apache.org; run by ezmlm Delivered-To: mailing list ant-user@jakarta.apache.org Received: (qmail 13103 invoked from network); 21 Feb 2001 02:50:05 -0000 Received: from unknown (HELO mblfw3.macquarie.com.au) (203.28.95.251) by h31.sny.collab.net with SMTP; 21 Feb 2001 02:50:05 -0000 Received: by mblfw3.macquarie.com.au; id NAA11056; Wed, 21 Feb 2001 13:49:42 +1100 Received: from mblfw4(203.18.209.231) by mblfw3.macquarie.com.au via smap (V4.2) id xma010783; Wed, 21 Feb 01 13:48:51 +1100 Received: by mblfw4.macquarie.com.au; id NAA14210; Wed, 21 Feb 2001 13:48:51 +1100 Received: from isdserv3.macbank(10.123.0.32) by mblfw4.macquarie.com.au via smap (V4.2) id xma013849; Wed, 21 Feb 01 13:48:20 +1100 Received: from nt_syd_ex01.macbank (nt_syd_ex01 [10.124.15.10]) by isdserv3.macbank (8.9.1/8.9.1) with ESMTP id NAA14415 for ; Wed, 21 Feb 2001 13:48:19 +1100 (EST) Received: by nt_syd_ex01.macbank with Internet Mail Service (5.5.2650.21) id ; Wed, 21 Feb 2001 13:48:18 +1100 Message-ID: <67FE02381F67D3119F960008C7845A2C0201D05B@nt_syd_ex09.macbank> From: Tim Vernum To: "'ANT-user'" Subject: RE: Two issues Date: Wed, 21 Feb 2001 13:48:11 +1100 X-Mailer: Internet Mail Service (5.5.2650.21) X-Spam-Rating: h31.sny.collab.net 1.6.2 0/1000/N > IC. I was not aware that dependent targets are somehow considered > parent targets of the depender (thus the parameters set in > them are set > in the depender). Seems kind of strange, but now that I know this at > least I can understand what it is doing. OK, I'm not sure if I follow you correctly. Each time I read it, I get a different view of what you are saying. In this case: $ ant B should print A A The series of steps ant performs is Run "target-B" "target-B" requires "target-A", so.. Run "target-A" prop="A" echo ${prop} (End target-A) prop="B" - prop is already set, do nothing echo ${prop} (End target-B)