Ok, this is pretty weird, and I've never seen this behavior before. I'm
running RH 6.X at home alongside OSX (and have a WINDOZE laptop too) and
I've transferred build files between the three of them with NO problems.
But, here I have to change:
<fileset dir="${lib.dir}">
<include name="*.jar"/>
<exclude name="*aspect*.jar"/>
<exclude name="etools.jar"/>
<exclude name="xerces.jar"/>
<not>
<contains text="ejb-jar.xml"/>
</not>
</fileset>
to:
<fileset dir="${lib.dir}">
<include name="**/*.jar"/>
<exclude name="**/*aspect*.jar"/>
<exclude name="**/etools.jar"/>
<exclude name="**/xerces.jar"/>
<not>
<contains text="ejb-jar.xml"/>
</not>
</fileset>
lib.dir=lib
There are NO spaces at the end of "lib" above...
Also, for those of you compiling with the IBM JDK, it's pretty finicky about
non-ascii characters. Make sure you have the following encoding setting
set:
LC_ALL=en_US.ISO8859-1
other wise you'll see the following (useless) messages:
[javac] error: The encoding null is not supported
Nice job IBM....
-----Original Message-----
From: Ciramella, EJ [mailto:ECiramella@emptoris.com]
Sent: Thursday, October 30, 2003 8:12 PM
To: 'Ant Users List'
Subject: RE: error while building in Redhat...
jar -tvf works, so they aren't hosed.
-----Original Message-----
From: Christopher Schultz [mailto:christopher.d.schultz@comcast.net]
Sent: Thursday, October 30, 2003 6:18 PM
To: Ant Users List
Subject: Re: error while building in Redhat...
EJ,
> naw, I tried that a while ago, the user I'm using has all the proper
> permissions.
>
> Good suggestions tho...
>
> I'm thinking it's something like that...
Did you hose the JAR file when you FTPd it to/from windoze? If you
didn't have the type set to binary, then you might have corrupted
it/them in transit.
-chris
---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
For additional commands, e-mail: user-help@ant.apache.org
|