diff options
author | Tom Tromey <tromey@redhat.com> | 2005-02-08 17:44:13 +0000 |
---|---|---|
committer | Tom Tromey <tromey@gcc.gnu.org> | 2005-02-08 17:44:13 +0000 |
commit | b59c0c440ce8fedd59951d7b43b5f432e4d39507 (patch) | |
tree | eb52b1a79200cc876065bedc8ab4708e031d478b /libjava/java | |
parent | f537f2f7f023ebb3250d0a6e3cd4df1ef608f242 (diff) | |
download | gcc-b59c0c440ce8fedd59951d7b43b5f432e4d39507.zip gcc-b59c0c440ce8fedd59951d7b43b5f432e4d39507.tar.gz gcc-b59c0c440ce8fedd59951d7b43b5f432e4d39507.tar.bz2 |
natRuntime.cc (insertSystemProperties): Set sun.boot.class.path earlier.
* java/lang/natRuntime.cc (insertSystemProperties): Set
sun.boot.class.path earlier.
From-SVN: r94740
Diffstat (limited to 'libjava/java')
-rw-r--r-- | libjava/java/lang/natRuntime.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libjava/java/lang/natRuntime.cc b/libjava/java/lang/natRuntime.cc index bf86522..0f3b798 100644 --- a/libjava/java/lang/natRuntime.cc +++ b/libjava/java/lang/natRuntime.cc @@ -1,6 +1,6 @@ // natRuntime.cc - Implementation of native side of Runtime class. -/* Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004 Free Software Foundation +/* Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation This file is part of libgcj. @@ -540,6 +540,9 @@ java::lang::Runtime::insertSystemProperties (java::util::Properties *newprops) // The java extensions directory. SET ("java.ext.dirs", JAVA_EXT_DIRS); + // The path to libgcj's boot classes + SET ("sun.boot.class.path", BOOT_CLASS_PATH); + // Set some properties according to whatever was compiled in with // `-D'. Important: after this point, the only properties that // should be set are those which either the user cannot meaningfully @@ -594,9 +597,6 @@ java::lang::Runtime::insertSystemProperties (java::util::Properties *newprops) sb->toString ()); } - // The path to libgcj's boot classes - SET ("sun.boot.class.path", BOOT_CLASS_PATH); - // The name used to invoke this process (argv[0] in C). SET ("gnu.gcj.progname", _Jv_GetSafeArg (0)); |