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] fix bootstrap failure on sparc-solaris


Hello,

once again, sparc-solaris is not happy with /bin/sh.
I have to launch /bin/ksh (CONFIG_SHELL) to execute a /bin/sh script.

The attached patch makes bootstrap running again on sparc-solaris8|10 at least.


Is this ok for trunk?


Andreas

2006-06-06 Andreas Tobler <a.tobler@schweiz.ch>

	* Makefile.am (libgcj-$(gcc_version).jar): Add SHELL to invoke JAR.
	* Makefile.in: Rebuilt.

Index: Makefile.am
===================================================================
--- Makefile.am (revision 114449)
+++ Makefile.am (working copy)
@@ -285,7 +285,7 @@
        $(LTGCJCOMPILE) -o $@ -c $< -Wc,--resource,$(@:.lo=)

 libgcj-$(gcc_version).jar: classpath/lib/compile-classes
-       cd classpath/lib; $(JAR) -cfM \
+       cd classpath/lib; $(SHELL) $(JAR) -cfM \
            ../../libgcj-$(gcc_version).jar gnu java javax org

CLEANFILES = libgcj-$(gcc_version).jar



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