diff mx.graal/suite.py @ 22888:9021de742f55

specify tag="default" in call to mx.get_jdk()
author Doug Simon <doug.simon@oracle.com>
date Mon, 26 Oct 2015 00:07:23 +0100
parents 86dacea931a2
children bc231bc8bf76
line wrap: on
line diff
--- a/mx.graal/suite.py	Sun Oct 25 11:55:50 2015 +0100
+++ b/mx.graal/suite.py	Mon Oct 26 00:07:23 2015 +0100
@@ -1,5 +1,5 @@
 import mx
-JDK9 = mx.get_jdk().javaCompliance >= "1.9"
+JDK9 = mx.get_jdk(tag='default').javaCompliance >= "1.9"
 _8_9 = "1.9" if JDK9 else "1.8"
 
 def deps(l):