diff src/share/vm/runtime/arguments.cpp @ 5065:227aa994f058

Two more package name corrections in C++ part.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Thu, 08 Mar 2012 19:49:51 +0100
parents 33df1aeaebbf
children ba5e8ba07b5c
line wrap: on
line diff
--- a/src/share/vm/runtime/arguments.cpp	Thu Mar 08 19:35:42 2012 +0100
+++ b/src/share/vm/runtime/arguments.cpp	Thu Mar 08 19:49:51 2012 +0100
@@ -2133,7 +2133,7 @@
     errno = 0;
     DIR* graal_dir_handle = os::opendir(graal_dir);
     while ((dentry = os::readdir(graal_dir_handle, (struct dirent *)tdbuf)) != NULL) {
-      if (strcmp(dentry->d_name, ".") != 0 && strcmp(dentry->d_name, "..") != 0 && strcmp(dentry->d_name, "com.oracle.max.graal.tests") != 0 && strcmp(dentry->d_name, "com.oracle.max.graal.jtt") != 0) {
+      if (strcmp(dentry->d_name, ".") != 0 && strcmp(dentry->d_name, "..") != 0 && strcmp(dentry->d_name, "com.oracle.graal.tests") != 0 && strcmp(dentry->d_name, "com.oracle.graal.jtt") != 0) {
         prepend_to_graal_classpath(scp_compiler, graal_dir, dentry->d_name);
         if (PrintVMOptions) {
           tty->print_cr("Adding project directory %s to bootclasspath", dentry->d_name);