Prepends plugin classes to the beginning of the boot class path, to fix part 2 of bug #164712. r=sdagley, sr=sfraser.

This commit is contained in:
beard%netscape.com 2002-08-30 02:33:41 +00:00
parent 6a091661e4
commit 0ca44ddd90

View File

@ -497,7 +497,9 @@ static OSStatus spec2path(const FSSpec& spec, char* path, UInt32 maxPathSize)
string MRJSession::getClassPath()
{
string classPath("-Djava.class.path=");
// to work around problem in Mac OS X 10.2 (Jaguar) (bugzilla #164712),
// put our classes in the boot class path.
string classPath("-Xbootclasspath/p:");
// keep appending paths make from FSSpecs.
MRJClassPath::const_iterator i = mClassPath.begin();