classpath-patches
[Top][All Lists]
Advanced

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

[cp-patches] [patch] native/jni/Makefile.am


From: Andreas Tobler
Subject: [cp-patches] [patch] native/jni/Makefile.am
Date: Mon, 05 Sep 2005 17:59:32 +0200
User-agent: Mozilla Thunderbird 1.0.5 (Macintosh/20050711)

Hello,

this patchlet will prevent us from solaris bug reports ;)

On solaris the /bin/sh does not understand the 'set -C' but if we define the CONFIG_SHELL at start time it gets expanded into SHELL. In gcc we have to use CONFIG_SHELL /bin/ksh. So we can use it here too.

/bin/ksh can work with 'set -C'.

So I'd like to see this patch go in before gcc merges cp back in.

ok?

Andreas

2005-09-05  Andreas Tobler  <address@hidden>

        * native/jni/Makefile.am (all-local): Invoke $(SHELL) to execute
        the script.

Index: native/jni/Makefile.am
===================================================================
RCS file: /cvsroot/classpath/classpath/native/jni/Makefile.am,v
retrieving revision 1.14
diff -u -r1.14 Makefile.am
--- native/jni/Makefile.am      17 Aug 2005 02:03:33 -0000      1.14
+++ native/jni/Makefile.am      5 Sep 2005 15:55:19 -0000
@@ -21,4 +21,4 @@
                gtk-peer qt-peer xmlj
 
 all-local:
-       cd $(top_srcdir) && scripts/check_jni_methods.sh
+       cd $(top_srcdir) && $(SHELL) ./scripts/check_jni_methods.sh

reply via email to

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