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

http://issues.apache.org/bugzilla/show_bug.cgi?id=36217


[EMAIL PROTECTED] changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |INVALID




------- Additional Comments From [EMAIL PROTECTED]  2005-08-31 17:57 -------
You need to use the "implicit" attribute.

        <macrodef name="my.javac">
                <attribute name="srcdir" />
                <attribute name="destdir" />
                <element name="classpath" optional="true" implicit="yes"/>
                <sequential>
                        <echo message="macro my.javac @{srcdir} @{destdir}" />
                        <javac srcdir="@{srcdir}"
                                         destdir="@{destdir}"
                                         deprecation="on"
                                         debug="on"
                                         optimize="off">
                                <classpath/>
                        </javac>
                </sequential>
        </macrodef>

Ps, I would not use the javacc as a task name, as there is already a task
of that name.

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

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

Reply via email to