changeset 15637:40f13c935d8b

mx: fix constructor call
author Bernhard Urban <bernhard.urban@jku.at>
date Wed, 14 May 2014 11:08:05 +0200
parents 92a939e551c4
children 83c69954bbaa
files mx/mx_graal.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mx/mx_graal.py	Wed May 14 01:25:21 2014 -0700
+++ b/mx/mx_graal.py	Wed May 14 11:08:05 2014 +0200
@@ -1535,7 +1535,7 @@
                     if not mx.library(name, fatalIfMissing=False):
                         mx.log('Skipping ' + groupId + '.' + artifactId + '.jar as ' + name + ' cannot be resolved')
                         return
-        d = mx.Distribution(graalSuite, name=artifactId, path=path, sourcesPath=path, deps=deps, excludedDependencies=[])
+        d = mx.Distribution(graalSuite, name=artifactId, path=path, sourcesPath=path, deps=deps, excludedDependencies=[], distDependency=None)
         d.make_archive()
         cmd = ['mvn', 'install:install-file', '-DgroupId=' + groupId, '-DartifactId=' + artifactId,
                '-Dversion=1.0-SNAPSHOT', '-Dpackaging=jar', '-Dfile=' + d.path]