This is the mail archive of the java-patches@gcc.gnu.org mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Patch: FYI: fix PR 26706


I'm checking this in on the trunk and the 4.1 branch.

This fixes PR 26706.  classpath's configure script didn't expand
GCC_NO_EXECUTABLES.  Oops.

Tom

Index: ChangeLog.gcj
from  Tom Tromey  <tromey@redhat.com>

	PR libgcj/26706:
	* aclocal.m4, configure: Rebuilt.
	* configure.ac (GCC_NO_EXECUTABLES): Moved earlier.

Index: configure.ac
===================================================================
--- configure.ac	(revision 112101)
+++ configure.ac	(working copy)
@@ -38,6 +38,9 @@
 AC_CONFIG_HEADERS([include/config.h])
 AC_PREFIX_DEFAULT(/usr/local/classpath)
 
+dnl GCC LOCAL
+GCC_NO_EXECUTABLES
+
 dnl -----------------------------------------------------------
 dnl Enable collections.jar (disabled by default)
 dnl -----------------------------------------------------------
@@ -241,9 +244,6 @@
 dnl Checks for programs.
 dnl -----------------------------------------------------------
 
-dnl GCC LOCAL
-GCC_NO_EXECUTABLES
-
 dnl Initialize libtool
 AC_DISABLE_STATIC
 AC_PROG_LIBTOOL


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]