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 2001/07/07 18:59:07 UTC

[Bug 1733] - Add ability to define a property with respect to another (property dereferencing)

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=1733

*** shadow/1733	Wed Jun 13 08:04:01 2001
--- shadow/1733.tmp.1470	Sat Jul  7 09:59:07 2001
***************
*** 47,50 ****
  
  
  ------- Additional Comments From bodewig@apache.org  2001-06-13 08:04 -------
! *** Bug 1737 has been marked as a duplicate of this bug. ***
--- 47,65 ----
  
  
  ------- Additional Comments From bodewig@apache.org  2001-06-13 08:04 -------
! *** Bug 1737 has been marked as a duplicate of this bug. ***
! 
! ------- Additional Comments From nico@apache.org  2001-07-07 09:59 -------
! Will 
! 
! <project name="test" basedir="." default="main">
!     <property name="the_selector" value="bloogga"/>
!     <property name="bloogga.blah"  value="bar" id="bloogga.blah" />
!     
!     <target name="main">
!         <property name="blah" refid="${the_selector}.blah"/>
!         <echo message="${blah}"/>
!     </target>
! </project>
! 
! work for you?