Berkeley CSUA MOTD:Entry 26577
Berkeley CSUA MOTD
 
WIKI | FAQ | Tech FAQ
http://csua.com/feed/
2024/11/23 [General] UID:1000 Activity:popular
11/23   

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?