Here is a snippet of ant script:
<target name="a">
<property name="X" value="x/>
</target>
<target name="ok" depends="a">
<echo>${X}</echo>
</target>
<target name="bad">
<antcall target="a"/>
<echo>${X}</echo>
</target>
In case of "bad" target property X is not definded. Why is it such and
is there a way to work it around? I can't change some logic to the first
case and really need to use antcall.
Roman
---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
For additional commands, e-mail: user-help@ant.apache.org
|