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=10917>. 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=10917 Ant.bat does not work with long classpath ------- Additional Comments From [EMAIL PROTECTED] 2002-07-17 21:03 ------- True. I was bite by that weird thing. I solved it by the following two lines of BAT, where the two env. vars where referenced on the Java command line as in 'java %_sysproperties% %_ovproperties% MyClass arguments'. Since the classpath is surrounded by quotes, you may end up with the fatal \" combination. Maybe ant.bat should have such voodoo (only tested in WinNT, Win2K, so don't know if it works on Win95 / Win98 / WinMe). :: replace all the trailing \" by \\" to avoid the java program :: misunderstanding the command line set _sysproperties=%_sysproperties:\"=\\"% set _ovproperties=%_ovproperties:\"=\\"% -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
