Re: classpath from external jars relative to environment variable

2006-08-18 Thread Robert La Ferla
On Aug 18, 2006, at 12:34 PM, Antoine Levy-Lambert wrote: Do you have a line reading in your build file ? This is a prerequisite to access env vars with the env. prefix. Yes. In fact, it was in my reply. ;-) I am still looking for / researching a solution. ---

Re: classpath from external jars relative to environment variable

2006-08-18 Thread Antoine Levy-Lambert
Do you have a line reading in your build file ? This is a prerequisite to access env vars with the env. prefix. Regards, Antoine > I actually had "." in their too. I think my problem may actually be > related to running ant under XCode (gui tool) because I was able to > run it fine fro

Re: classpath from external jars relative to environment variable

2006-08-18 Thread Robert La Ferla
On Aug 18, 2006, at 11:54 AM, Antoine Levy-Lambert wrote: Wrong, property values expand other property values (if the props are defined). e.g. You type env. MYPROJECT should be env.MYPROJECT without space between env. and MYPROJECT That was a typo. The problem still occurs with

Re: classpath from external jars relative to environment variable

2006-08-18 Thread Antoine Levy-Lambert
Hi, Original-Nachricht Datum: Fri, 18 Aug 2006 11:18:40 -0400 Von: Robert La Ferla <[EMAIL PROTECTED]> An: Ant Users List Betreff: classpath from external jars relative to environment variable > I have several external jars that are located relative to a directory &g

classpath from external jars relative to environment variable

2006-08-18 Thread Robert La Ferla
I have several external jars that are located relative to a directory specified by an environment variable $MYPROJECT. I need to construct a classpath within my build.xml so that javac can compile my project. It seemed pretty straightforward but I can't seem to get it to work. What's th