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

problems with ant converting the slash to unix slash 

           Summary: problems with ant converting the slash to unix slash
           Product: Ant
           Version: 1.3
          Platform: Sun
        OS/Version: Other
            Status: NEW
          Severity: Normal
          Priority: Other
         Component: Build Process
        AssignedTo: [EMAIL PROTECTED]
        ReportedBy: [EMAIL PROTECTED]


<property name="build.dir" value="${COMPONENT NAME.home}"/>
  <property name="exports.dir" value="..\Exports"/>
  <property name="src.dir" value="${build.dir}\src"/>

---problem lies, when this is run, it does not produce the correct output, and 
when a find is performed, it finds .\src/skel
however when you try to change to the dir, it doesn't exist.  It doesn't seem 
to be changing the windows \ to unix /


Updated this to below and the src/skel is created properly.

<property name="COMPONENT NAME.home" value="."/>

  <property name="build.dir" value="${COMPONENT NAME.home}"/>
  <property name="exports.dir" value="..\Exports"/>
  <property name="src.dir" value="src"/>

Why is the first case failing?  It works in windows...thanks

Reply via email to