This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Patch: FYI: Fix for PR 4295
- To: Java Patch List <java-patches at gcc dot gnu dot org>
- Subject: Patch: FYI: Fix for PR 4295
- From: Tom Tromey <tromey at redhat dot com>
- Date: 17 Oct 2001 10:13:10 -0600
- Cc: Gcc Patch List <gcc-patches at gcc dot gnu dot org>
- Reply-To: tromey at redhat dot com
I'm checking this in. This fixes PR 4295 by making fastjar $(EXEEXT)
aware. Thanks to David Billinghurst for testing it for me.
Tom
Index: ChangeLog
from Tom Tromey <tromey@redhat.com>
For PR java/4295:
* aclocal.m4, configure, Makefile.in: Rebuilt.
* configure.in: Added AC_EXEEXT.
Index: configure.in
===================================================================
RCS file: /cvs/gcc/gcc/fastjar/configure.in,v
retrieving revision 1.4
diff -u -r1.4 configure.in
--- configure.in 2001/06/28 19:42:24 1.4
+++ configure.in 2001/10/17 15:55:00
@@ -10,6 +10,7 @@
AC_PATH_PROG(CP, cp, /bin/cp, $PATH:/bin:/usr/bin:/usr/local/bin)
AC_PATH_PROG(STRIP, strip, /usr/bin/strip, $PATH:/bin:/usr/bin:/usr/local/bin)
AC_PATH_PROG(CHMOD, chmod, /bin/chmod, $PATH:/bin:/usr/bin:/usr/local/bin)
+AC_EXEEXT
dnl Add warning flags if we are using gcc.
if test "$GCC" = yes; then