RE: How can ant detect it is running on a 64 bit machine?

2005-10-17 Thread Marion, Patrick
t give me a warm and fuzzy feeling about its trustworthiness. I am running Ant 1.6.2; could it be that more recent versions handle this? P. -Original Message- From: Robert Clark [mailto:[EMAIL PROTECTED] Sent: Friday, October 14, 2005 10:24 AM To: Marion, Patrick Cc: user@ant.apache.org

How can ant detect it is running on a 64 bit machine?

2005-10-13 Thread Marion, Patrick
Problem: have ant tell me whether I am running on a 64 bit architecture. I thought the solution was: check for the value of the "os.arch" property. Unfortunately, if I can make something out of the value returned on Windows ("amd64) I can't on Linux (it returns "i386" which is id

Same build script, different JVM, different command line params

2005-05-12 Thread Marion, Patrick
Our nighthly build loops on different branches, each one requiring to be built with a specific java version. To do so, it slurps in a property file where each branch specifies the java version it requires, and then proceeds to call ant again through the task, resetting the JAVA_HOME environment v

Is there a way to turn off "user defined properties"?

2005-04-06 Thread Marion, Patrick
Hello, The Ant doc says about the task: "By default, all of the properties of the current project will be available in the new project. Alternatively, you can set the inheritAll attribute to false and only "user" properties (i.e., those passed on the command-line) will be passed to the new projec

RE: : Execute failed: java.io.IOException: CreateProcess...

2005-03-04 Thread Marion, Patrick
ot in the FAQ, it's in the archives. --DD > -Original Message- > From: Marion, Patrick [mailto:[EMAIL PROTECTED] > Sent: Friday, March 04, 2005 4:20 PM > To: 'user@ant.apache.org' > Subject: : Execute failed: java.io.IOException: CreateProcess... > > Hell

: Execute failed: java.io.IOException: CreateProcess...

2005-03-04 Thread Marion, Patrick
Hello, I am running ant 1.6.2 on XP. My build.xml contains this snippet: when I execute the target which contains this snipped, ant fails with the following error message: BUILD FAILED D:\opt\build-tool\build.xml:172: The following error occurred while executing this line: D:\op

RE: from fileset to property

2005-02-11 Thread Marion, Patrick
cht- > Von: Marion, Patrick [mailto:[EMAIL PROTECTED] > Gesendet am: Freitag, 11. Februar 2005 02:34 > An: 'user@ant.apache.org' > Betreff: from fileset to property > > Hello, > > I would like to loop (with in a target I don't > really contr

from fileset to property

2005-02-10 Thread Marion, Patrick
Hello, I would like to loop (with in a target I don't really control and which expects "list="${this.property}"); "this.property" is a property I can set with a list of files. I'd like to have this list of files built at run time. I was hoping to use and translate "this.fileset" to "this.prope

creating a fileset and using it later with

2005-02-04 Thread Marion, Patrick
Is it possible to create a fileset at somepoint with a "refid" of some sorts and refer to this refid later on in a task? Thanks. P - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Misusing ?

2005-01-24 Thread Marion, Patrick
Hi, ant-contrib question, I think. I would like to use the "expends" feature for ; My build file looks like this: ... ... The "generictarget" is sup