comparison src/share/vm/runtime/os.cpp @ 2387:fc416c2556ec

7025628: Remove the temporary hack added for jdk modularization in hotspot Summary: Removed Reviewed-by: ohair, coleenp
author mchung
date Tue, 22 Mar 2011 18:04:03 -0400
parents f767174aac14
children 677234770800
comparison
equal deleted inserted replaced
2386:083f13976b51 2387:fc416c2556ec
1077 "%/lib/rt.jar:" 1077 "%/lib/rt.jar:"
1078 "%/lib/sunrsasign.jar:" 1078 "%/lib/sunrsasign.jar:"
1079 "%/lib/jsse.jar:" 1079 "%/lib/jsse.jar:"
1080 "%/lib/jce.jar:" 1080 "%/lib/jce.jar:"
1081 "%/lib/charsets.jar:" 1081 "%/lib/charsets.jar:"
1082
1083 // ## TEMPORARY hack to keep the legacy launcher working when
1084 // ## only the boot module is installed (cf. j.l.ClassLoader)
1085 "%/lib/modules/jdk.boot.jar:"
1086
1087 "%/classes"; 1082 "%/classes";
1088 char* sysclasspath = format_boot_path(classpath_format, home, home_len, fileSep, pathSep); 1083 char* sysclasspath = format_boot_path(classpath_format, home, home_len, fileSep, pathSep);
1089 if (sysclasspath == NULL) return false; 1084 if (sysclasspath == NULL) return false;
1090 Arguments::set_sysclasspath(sysclasspath); 1085 Arguments::set_sysclasspath(sysclasspath);
1091 1086