changeset 21971:28debbb6496d

Don't apply os.path.realpath to the boot classpath
author Stefan Anzinger <stefan.anzinger@oracle.com>
date Mon, 15 Jun 2015 13:01:35 +0200
parents 1e0012efac83
children bf2a8eb04fc8
files mx/mx_graal_makefile.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mx/mx_graal_makefile.py	Mon Jun 15 13:45:35 2015 +0200
+++ b/mx/mx_graal_makefile.py	Mon Jun 15 13:01:35 2015 +0200
@@ -155,7 +155,7 @@
 
 def do_build_makefile(mf, selectedDists, commandline):
     java = mx.java()
-    bootClassPath = os.path.realpath(java.bootclasspath())
+    bootClassPath = java.bootclasspath()
     bootClassPath = bootClassPath.replace(os.path.realpath(java.jdk), "$(ABS_BOOTDIR)")
     jdkBootClassPathVariableName = "JDK_BOOTCLASSPATH"