classpath-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[cp-patches] Patch: FYI: update PR 23238 fix


From: Tom Tromey
Subject: [cp-patches] Patch: FYI: update PR 23238 fix
Date: 11 Aug 2005 10:36:47 -0600

I'm checking this in.

Move the invocation of split-for-gcj.sh into gen-classlist.sh caused a
regression on PR 23238.  Also I noticed that we were using a subst
called 'SH' when we could be using the standard SHELL instead; I fixed
this.

Tom

Index: ChangeLog
from  Tom Tromey  <address@hidden>

        For PR classpath/23238:
        * lib/gen-classlist.sh.in: Use @SHELL@; invoke split-for-gcj.sh
        with it.
        * configure.ac (SH): Removed subst.

Index: configure.ac
===================================================================
RCS file: /cvsroot/classpath/classpath/configure.ac,v
retrieving revision 1.97
diff -u -r1.97 configure.ac
--- configure.ac 1 Aug 2005 22:28:34 -0000 1.97
+++ configure.ac 11 Aug 2005 16:39:35 -0000
@@ -391,7 +391,6 @@
 dnl -----------------------------------------------------------
 dnl This is probably useless.
 dnl -----------------------------------------------------------
-AC_PATH_PROG(SH, sh)
 AC_PATH_PROG(MKDIR, mkdir)
 AC_PATH_PROG(CP, cp)
 AC_PATH_PROG(DATE, date)
Index: lib/gen-classlist.sh.in
===================================================================
RCS file: /cvsroot/classpath/classpath/lib/gen-classlist.sh.in,v
retrieving revision 1.28
diff -u -r1.28 gen-classlist.sh.in
--- lib/gen-classlist.sh.in 10 Aug 2005 22:37:27 -0000 1.28
+++ lib/gen-classlist.sh.in 11 Aug 2005 16:39:35 -0000
@@ -1,4 +1,4 @@
-#! @SH@
+#! @SHELL@
 # @configure_input@
 
 # Make sure sorting is done the same on all configurations
@@ -87,7 +87,7 @@
   done
 
   if test -n "$GCJ"; then
-     ${top_srcdir}/lib/split-for-gcj.sh
+     @SHELL@ ${top_srcdir}/lib/split-for-gcj.sh
   fi
 fi
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]