Hi,

        Can someone please help me use <uptodate>? I've got the
following use-case:

        <uptodate property="A.skip" srcfile="fileA"
targetfile="fileA.out">
        <target name="A" unless="A.skip"/>
        
        <uptodate property="B.skip" srcfile="fileA.out"
targetfile="fileB.out">
        <target name="B" unless="B.skip"/>

        The problem target A produces "fileA.out" but this won't exist
on a fresh working directory (i.e. if target A has never run before).
So when I try running the Ant script it throws an exception on the 2nd
<uptodate> tag complaining that the srcfile "fileA.out" does not exist.

        How do I specify an Ant script such that the 2nd <uptodate> tag
is only evaluated after target A runs?

Thank you,
Gili


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to