| ||||||
| 5/20 |
| 2002/11/18 [Computer/SW] UID:26577 Activity:nil |
11/18 Ant question: I have a task that depends on an intermediate file:
<target name="t1" depends="_t1">
<ant dir="." target="all" inheritAll="false">
<property name="inputfile" value="file.tmp"/>
</ant>
</target>
<target name="_t1">
(generate file.tmp)
</target>
But it seems like the recursive call to ant is never made.
Suggestions? |