Re: Location attribute in property not resolving correctly

2006-10-05 Thread Steve Loughran
m: Rebhan, Gilbert [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 27, 2006 8:03 AM To: Ant Users List Subject: RE: Location attribute in property not resolving correctly Hi, strange = outputsetid="mypath" count="1&

Re: Location attribute in property not resolving correctly

2006-10-05 Thread Antoine Levy-Lambert
sers List Subject: RE: Location attribute in property not resolving correctly Hi, strange = myfixedpath === ${myfixedpath} filepath=${myfixedpath} filepath=${my

RE: Location attribute in property not resolving correctly

2006-10-05 Thread Rebhan, Gilbert
to:[EMAIL PROTECTED] Sent: Wednesday, September 27, 2006 8:03 AM To: Ant Users List Subject: RE: Location attribute in property not resolving correctly Hi, strange = myfixedpath === ${my

RE: Location attribute in property not resolving correctly

2006-09-26 Thread Rebhan, Gilbert
Hi, strange = myfixedpath === ${myfixedpath} filepath=${myfixedpath} filepath=${myfixedpath} Targetfile === ${filepath} foobar1.pr

Re: Location attribute in property not resolving correctly

2006-09-26 Thread Dominique Devienne
filepath=${myfixedpath} The foobar.properties looks like = #Tue Sep 26 17:40:31 CEST 2006 filepath=Y\:/bla/corba.jar This is fishy because would never add the timestamp, like java.util.Property#store would. So something else created the file you're showing... --

RE: Location attribute in property not resolving correctly

2006-09-26 Thread William Lopez
Thanks for the explanation! -Original Message- From: Rebhan, Gilbert [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 26, 2006 2:09 AM To: Ant Users List Subject: RE: Location attribute in property not resolving correctly Hi, that's the reason i _always_ use the unix

RE: Location attribute in property not resolving correctly

2006-09-26 Thread Rebhan, Gilbert
Ant Users List Subject: Re: Location attribute in property not resolving correctly > that's the reason i _always_ use the unix style ' / ' > although i'm running on windows. Yes, that what I recommend as well. > if you use a path on a windows machine, f.e. : >

Re: Location attribute in property not resolving correctly

2006-09-26 Thread Dominique Devienne
that's the reason i _always_ use the unix style ' / ' although i'm running on windows. Yes, that what I recommend as well. if you use a path on a windows machine, f.e. : the path in the file you echoed to looks like : C:\the\path\to\something the windows path separator is used as you are

Re: Location attribute in property not resolving correctly

2006-09-26 Thread Dominique Devienne
... Create a text property, not a referenceable path. ... Use your selector first, then convert the final path into a string before . --DD - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAI

RE: Location attribute in property not resolving correctly

2006-09-26 Thread Rebhan, Gilbert
:/bla/channelfw.jar:Y:/bla/clusteradapter.jar:Y:/bla/com.ibm.mq.jar not found. Regards, Gilbert -Original Message- From: Rebhan, Gilbert [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 26, 2006 3:15 PM To: Ant Users List Subject: RE: Location attribute in property not resolving correctly

RE: Location attribute in property not resolving correctly

2006-09-26 Thread Rebhan, Gilbert
ECTED] Sent: Monday, September 25, 2006 9:38 PM To: user@ant.apache.org Subject: Location attribute in property not resolving correctly Ant: 1.6.5 Java: 1.5.0_07 OS: WinXP I have a build.properties with the following props defined: dir.src=C:\Temp\compare_cmp dir.dest=C:\Work\Dev\pro

RE: Location attribute in property not resolving correctly

2006-09-26 Thread Rebhan, Gilbert
Sent: Tuesday, September 26, 2006 3:49 PM To: Ant Users List Subject: Re: Location attribute in property not resolving correctly > ... > Create a text property, not a referenceable path. > count="1" age="eldest"/> > ... Use your selector first, then co

RE: Location attribute in property not resolving correctly

2006-09-25 Thread William Lopez
att Benson [mailto:[EMAIL PROTECTED] Sent: Monday, September 25, 2006 2:42 PM To: Ant Users List Subject: Re: Location attribute in property not resolving correctly uh, it's part of the Java property file spec that backslashes must be escaped: dir.src=C:\\Temp\\compare_cmp dir.dest=C:\\Work\\

Re: Location attribute in property not resolving correctly

2006-09-25 Thread Matt Benson
uh, it's part of the Java property file spec that backslashes must be escaped: dir.src=C:\\Temp\\compare_cmp dir.dest=C:\\Work\\Dev\\projects\\Installer\\code\\Installer_c1.0.latest\\cmp -Matt --- William Lopez <[EMAIL PROTECTED]> wrote: > Ant: 1.6.5 > Java: 1.5.0_07 > OS: WinXP > > I have a

Location attribute in property not resolving correctly

2006-09-25 Thread William Lopez
Ant: 1.6.5 Java: 1.5.0_07 OS: WinXP I have a build.properties with the following props defined: dir.src=C:\Temp\compare_cmp dir.dest=C:\Work\Dev\projects\Installer\code\Installer_c1.0.latest\cmp The build is failing because the props are being resolved without the backslashes. Here are the s: