--- "Bob Hays, Computer Geek" <[EMAIL PROTECTED]> wrote:
> I'm using pathconvert to put a new-line separated classpath into a
> config file for a program (DashOPro in this case).  So, I do this:
> 
> <pathconvert pathsep="${line.separator}" property="TEMP"
> refid="classpath"/>
> 
> followed by a replace tag:
> 
> <replace file="file.dop" token="@CLASSPATH@" value="${TEMP}" />
> 
> and I get double new lines on each line substituted - anyone know why?

Does changing your <replace> task to the following fix it for you:
    <replace file="file.dop">
      <replacefilter token="@CLASSPATH@" value="${TEMP}"/>
    </replace>

Diane

=====
([EMAIL PROTECTED])



__________________________________________________
Do You Yahoo!?
Try FREE Yahoo! Mail - the world's greatest free email!
http://mail.yahoo.com/

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

Reply via email to