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=3654>.
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=3654
Summary: ant.bat support for 4NT fails
Product: Ant
Version: 1.4
Platform: PC
OS/Version: Windows NT/2K
Status: NEW
Severity: Normal
Priority: Other
Component: Core
AssignedTo: ant-dev@jakarta.apache.org
ReportedBy: greg_fenton@yahoo.com
There is a bug in the code for detecting the 4NT
environment.
The current code is:
if "%eval[2+2]" == "4" goto setup4NT
However, the code should be:
if "%@eval[2+2]" == "4" goto setup4NT
This is pointed out in a previous post to the ant-user
group:
http://www.mail-archive.com/ant-user@jakarta.apache.org/msg06753.html
|