DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=23029>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=23029

ant:current broken if within <sequential>

           Summary: ant:current broken if within <sequential>
           Product: Ant
           Version: 1.6Alpha (nightly)
          Platform: Other
        OS/Version: Other
            Status: NEW
          Severity: Normal
          Priority: Other
         Component: Core
        AssignedTo: [EMAIL PROTECTED]
        ReportedBy: [EMAIL PROTECTED]


This works:

<antlib xmlns:c="ant:current">
    <taskdef name="site" classname="com.btwholesale.portal.ant.SiteTask"/>
    <macrodef name="dosomething">
        <c:site/>
    </macrodef>
</antlib>

However, this doesn't

<antlib xmlns:c="ant:current">
    <taskdef name="site" classname="com.btwholesale.portal.ant.SiteTask"/>
    <macrodef name="dosomething">
        <sequential>
            <c:site/>
        </sequential>
    </macrodef>
</antlib>

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

Reply via email to