Hi,
I committed this patch to install the plugin in the same location as the JNI
libraries.
Tom
2006-07-05 Thomas Fitzsimmons <[EMAIL PROTECTED]>
* native/plugin/Makefile.am (nativeexeclib_LTLIBRARIES): Rename
from lib_LTLIBRARIES.
(install-plugin): Depend on nativeexeclib_LTLIBRARIES.
Index: native/plugin/Makefile.am
===================================================================
RCS file: /sources/classpath/classpath/native/plugin/Makefile.am,v
retrieving revision 1.5
diff -u -r1.5 Makefile.am
--- native/plugin/Makefile.am 20 Jun 2006 21:46:38 -0000 1.5
+++ native/plugin/Makefile.am 5 Jul 2006 21:14:34 -0000
@@ -1,4 +1,4 @@
-lib_LTLIBRARIES = libgcjwebplugin.la
+nativeexeclib_LTLIBRARIES = libgcjwebplugin.la
libgcjwebplugin_la_SOURCES = gcjwebplugin.cc
@@ -10,7 +10,7 @@
$(GLIB_LIBS) $(GTK_LIBS) \
-lstdc++
-install-plugin: $(lib_LTLIBRARIES)
+install-plugin: $(nativeexeclib_LTLIBRARIES)
$(INSTALL) -d -m0755 $(DESTDIR)$(PLUGIN_DIR)
$(INSTALL) .libs/libgcjwebplugin.so $(DESTDIR)$(PLUGIN_DIR)