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=42397>.
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=42397


[EMAIL PROTECTED] changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Severity|normal                      |major
            Summary|NPE when combining <files>  |Reference does not work for
                   |and <javac>/<classpath>     |<files> within a <path>




------- Additional Comments From [EMAIL PROTECTED]  2007-05-11 09:19 -------
Thanks for the report.
I am reproduce this with a simpler build file,
and so am changing the 
title to reflect the root cause.

The follows build.xml file shows the problem:
<project>
  <files id="files">
    <include name="${basedir}/build.xml"/>
  </files>


  <path id="path">
    <files> <!-- this works fine -->
      <include name="${basedir}/build.xml"/>
    </files>
  </path>

  <path id="path">
    <files refid="files"/> <!-- this causes a null-pointer -->
  </path>

  
</project>



-- 
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