Skip to content
Snippets Groups Projects
Commit f51f2cff authored by Lukas Stadler's avatar Lukas Stadler
Browse files

Merge pull request #450 in G/fastr from ~MICK.JORDAN_ORACLE.COM/fastr:bugfix/gr-1753 to master

* commit 'a073465a':
  suppress jdk_tools.jar in fastr-release
parents 8eb67b85 a073465a
No related branches found
No related tags found
No related merge requests found
......@@ -228,8 +228,9 @@ class ReleaseBuildTask(mx.NativeBuildTask):
if isinstance(dep, mx.JARDistribution):
shutil.copy(join(dep.suite.dir, dep.path), jars_dir)
elif isinstance(dep, mx.Library):
jar_name = dep.name.lower() + '.jar'
shutil.copyfile(join(dep.suite.dir, dep.path), join(jars_dir, jar_name))
if not dep.name.lower() == 'jdk_tools':
jar_name = dep.name.lower() + '.jar'
shutil.copyfile(join(dep.suite.dir, dep.path), join(jars_dir, jar_name))
elif isinstance(dep, mx.JavaProject):
if 'com.oracle.truffle.r' in dep.name:
classfiles_dir = dep.output_dir()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment