From 6d1723c73904805421b998e0262b382cf565d941 Mon Sep 17 00:00:00 2001 From: Lukas Stadler <lukas.stadler@oracle.com> Date: Tue, 22 Nov 2016 14:10:25 +0100 Subject: [PATCH] fix usage of split_j_args --- mx.fastr/mx_fastr.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mx.fastr/mx_fastr.py b/mx.fastr/mx_fastr.py index a472b925bf..c9044b2965 100644 --- a/mx.fastr/mx_fastr.py +++ b/mx.fastr/mx_fastr.py @@ -195,7 +195,7 @@ def run_r(args, command, parser=None, extraVmArgs=None, jdk=None, **kwargs): ns, rargs = parser.parse_known_args(args) if ns.extraVmArgsList: - j_extraVmArgsList = mx.split_j_args(ns.extraVmArgsList) + j_extraVmArgsList = split_j_args(ns.extraVmArgsList) if extraVmArgs is None: extraVmArgs = [] extraVmArgs += j_extraVmArgsList -- GitLab