# HG changeset patch # User Jaroslav Tulach # Date 1434455012 -7200 # Node ID dd4050aadaf8d91301b159cb30a609d8bb99feeb # Parent 0a00a5bd7c704b0b73dcb2f20eb6d11e62ff9282 Using _ instead of - as agreed to yesterday diff -r 0a00a5bd7c70 -r dd4050aadaf8 mx/mx_graal.py --- 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]) diff -r 0a00a5bd7c70 -r dd4050aadaf8 mx/suite.py --- 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" ], }, },