This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
[PATCH] [4.0]: Use target's fastjar for cross builds
- From: Mohan Embar <gnustuff at thisiscool dot com>
- To: java-patches at gcc dot gnu dot org
- Date: Fri, 25 Mar 2005 19:19:22 -0600
- Subject: [PATCH] [4.0]: Use target's fastjar for cross builds
- Reply-to: gnustuff at thisiscool dot com
Hi People,
When configuring with a cross compiler, the automake
variable ZIP is incorrectly being set to jar instead
of '${target_noncanonical}-fastjar' in configure.ac.
This patch is against the 4.0 tree; I assume a similar
one needs to be done for 4.1.
Okay?
-- Mohan
http://www.thisiscool.com/
http://www.animalsong.org/
2005-03-25 Mohan Embar <gnustuff@thisiscool.com>
* configure.ac (which_gcj=cross): Change ZIP from
jar to fastjar for target.
* configure: Regenerated.
Index: configure.ac
===================================================================
RCS file: /cvs/gcc/gcc/libjava/configure.ac,v
retrieving revision 1.19
diff -u -2 -r1.19 configure.ac
--- configure.ac 23 Feb 2005 01:05:45 -0000 1.19
+++ configure.ac 26 Mar 2005 00:49:26 -0000
@@ -1090,5 +1090,5 @@
GCJ="${target_noncanonical}-gcj -B`${PWDCMD-pwd}`/"
fi
- ZIP=jar
+ ZIP='${target_noncanonical}-fastjar'
GCJH='$(target_noncanonical)-gcjh'
;;