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

Javac task always generates optional -sourcepath switch

[EMAIL PROTECTED] changed:

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



------- Additional Comments From [EMAIL PROTECTED]  2001-12-19 13:34 -------
Here is the fix:

file: 
src/main/org/apache/tools/ant/taskdefs/compilers/DefaultCompilerAdapter.java
around line: 270

            cmd.createArgument().setPath(classpath);
/** jw: this is wrong!  Otherwise javac won't find sources for implicitly 
referenced classes that outside our specific
set of source files
            cmd.createArgument().setValue("-sourcepath");
            cmd.createArgument().setPath(src);
*/

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

Reply via email to