You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by bu...@apache.org on 2004/01/28 11:01:48 UTC

DO NOT REPLY [Bug 26384] - enhance CONCAT to allow property resolution within the body

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

enhance CONCAT to allow property resolution within the body





------- Additional Comments From peter.reilly@corvil.com  2004-01-28 10:01 -------
I am not to certain what is request. Note that in ant1.6.0, the
concat task allows a nested filterchain element that can expand
properties - this may address this enhancement request.
    <property name="my.property" value="This is set"/>
    <concat>${my.property}</concat>
    <concat destfile="x.p">$${my.property}</concat>
    <concat><path path="x.p"/></concat>
    <concat>
      <path path="x.p"/>
      <filterchain>
        <expandproperties/>
      </filterchain>
    </concat>

This outputs:
   [concat] This is set


   [concat] ${my.property}


   [concat] This is set

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@ant.apache.org
For additional commands, e-mail: dev-help@ant.apache.org