This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
[ecj] Patch: FYI: look for gjar
- From: Tom Tromey <tromey at redhat dot com>
- To: Java Patch List <java-patches at gcc dot gnu dot org>
- Date: 02 Jan 2007 15:26:20 -0700
- Subject: [ecj] Patch: FYI: look for gjar
- Reply-to: tromey at redhat dot com
I'm checking this in on gcj-eclipse-merge-branch.
Now that we build and install gjar it makes sense to check for this in
configure. This makes it a bit simpler to use one gcj install to
build another.
Tom
Index: ChangeLog
from Tom Tromey <tromey@redhat.com>
* configure: Rebuilt.
* configure.ac: Check for gjar.
Index: configure.ac
===================================================================
--- configure.ac (revision 120082)
+++ configure.ac (working copy)
@@ -143,7 +143,7 @@
AC_CHECK_TOOL(AR, ar)
AC_CHECK_TOOL(RANLIB, ranlib, :)
AC_PROG_AWK
-AC_CHECK_PROGS([JAR], [jar fastjar], no)
+AC_CHECK_PROGS([JAR], [jar fastjar gjar], no)
AC_PATH_PROG([ZIP], [zip], no)
AC_PATH_PROG([UNZIP], [unzip], unzip)
AM_CONDITIONAL(BASH_JAR, test "$JAR" = no)