changeset 21942:dd4050aadaf8

Using _ instead of - as agreed to yesterday
author Jaroslav Tulach <jaroslav.tulach@oracle.com>
date Tue, 16 Jun 2015 13:43:32 +0200
parents 0a00a5bd7c70
children 1adad389c232
files mx/mx_graal.py mx/suite.py
diffstat 2 files changed, 6 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/mx/mx_graal.py	Tue Jun 16 12:54:55 2015 +0200
+++ b/mx/mx_graal.py	Tue Jun 16 13:43:32 2015 +0200
@@ -1734,7 +1734,7 @@
 
 def maven_install_truffle(args):
     """install Truffle into your local Maven repository"""
-    for name in ['TRUFFLE', 'TRUFFLE-TCK', 'TRUFFLE-DSL-PROCESSOR', 'TRUFFLE-SL']:
+    for name in ['TRUFFLE', 'TRUFFLE_TCK', 'TRUFFLE_DSL_PROCESSOR', 'TRUFFLE_SL']:
         mx.archive(["@" + name])
         path = mx._dists[name].path
         mx.run(['mvn', 'install:install-file', '-DgroupId=com.oracle', '-DartifactId=' + name.lower(), '-Dversion=' + graal_version('SNAPSHOT'), '-Dpackaging=jar', '-Dfile=' + path])
--- a/mx/suite.py	Tue Jun 16 12:54:55 2015 +0200
+++ b/mx/suite.py	Tue Jun 16 13:43:32 2015 +0200
@@ -354,7 +354,7 @@
       ],
     },
 
-    "TRUFFLE-TCK" : {
+    "TRUFFLE_TCK" : {
       "path" : "build/truffle-tck.jar",
       "subDir" : "graal",
       "sourcesPath" : "build/truffle-tck.src.zip",
@@ -365,7 +365,7 @@
       "distDependencies" : ["TRUFFLE"],
     },
 
-    "TRUFFLE-DSL-PROCESSOR" : {
+    "TRUFFLE_DSL_PROCESSOR" : {
       "path" : "build/truffle-dsl-processor.jar",
       "subDir" : "graal",
       "sourcesPath" : "build/truffle-dsl-processor.src.zip",
@@ -374,7 +374,7 @@
       "distDependencies" : ["TRUFFLE"],
     },
 
-    "TRUFFLE-SL" : {
+    "TRUFFLE_SL" : {
       "path" : "build/truffle-sl.jar",
       "subDir" : "graal",
       "sourcesPath" : "build/truffle-sl.src.zip",
@@ -385,8 +385,8 @@
       ],
       "distDependencies" : [
           "TRUFFLE",
-          "TRUFFLE-TCK",
-          "TRUFFLE-DSL-PROCESSOR"
+          "TRUFFLE_TCK",
+          "TRUFFLE_DSL_PROCESSOR"
       ],
     },
   },