Bugs item #1098013, was opened at 2005-01-07 17:06
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=402868&aid=1098013&group_id=31650

Category: Core
Group: 0.85
Status: Open
Resolution: None
Priority: 5
Submitted By: Alex Hildyard (ahildyard)
Assigned to: Nobody/Anonymous (nobody)
Summary: Call task no longer handles recursion in 0.85-rc1

Initial Comment:

The "call" task no longer appears to support reentrancy. 
Am I doing something wrong, or is this a genuine bug?

Sample project:

<?xml version="1.0" encoding="utf-8" ?> 
<project name="call" default="setupLoop">

        <property name="temp.loop" value="0"/>

        <target name="setupLoop">
                <call target="performLoop"/>
        </target>

        <target name="performLoop">
                <echo message="${temp.loop}"/>
                <property name="temp.loop" 
value="${int::parse(temp.loop)+1}"/>
                <call target="performLoop" 
if="${int::parse(temp.loop) &lt; 10}"/>
        </target>

</project>


Error:
"Call task cannot call its own parent"




----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=402868&aid=1098013&group_id=31650


-------------------------------------------------------
The SF.Net email is sponsored by: Beat the post-holiday blues
Get a FREE limited edition SourceForge.net t-shirt from ThinkGeek.
It's fun and FREE -- well, almost....http://www.thinkgeek.com/sfshirt
_______________________________________________
nant-developers mailing list
nant-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nant-developers

Reply via email to