Makefile.am: Define JAVA_EXT_DIRS.

2004-05-19  Anthony Green  <green@redhat.com>

	* Makefile.am: Define JAVA_EXT_DIRS.
	* Makefile.in: Rebuilt.
	* java/lang/natRuntime.cc (insertSystemProperties): Set
	java.ext.dirs property.

From-SVN: r82034
This commit is contained in:
Anthony Green 2004-05-19 19:31:42 +00:00 committed by Anthony Green
parent e916e1d0e0
commit 0f22079ec2
4 changed files with 14 additions and 2 deletions

View file

@ -592,6 +592,9 @@ java::lang::Runtime::insertSystemProperties (java::util::Properties *newprops)
// The name used to invoke this process (argv[0] in C).
SET ("gnu.gcj.progname", _Jv_GetSafeArg (0));
// The the java extensions directory.
SET ("java.ext.dirs", JAVA_EXT_DIRS);
// Allow platform specific settings and overrides.
_Jv_platform_initProperties (newprops);