Skip to content

Commit afbfb47

Browse files
committed
Honour output substitutions in GraalpythonProject
1 parent 25f45fb commit afbfb47

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mx.graalpython/mx_graalpython.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2406,7 +2406,7 @@ def __init__(self, suite, name, subDir, srcDirs, deps, workingSets, d, theLicens
24062406
mx.Project.__init__(self, suite, name, subDir, srcDirs, deps, workingSets, d, theLicense, **kwargs)
24072407

24082408
def getOutput(self, replaceVar=mx_subst.results_substitutions):
2409-
return self.get_output_root()
2409+
return replaceVar.substitute(self.get_output_root())
24102410

24112411
def output_dir(self):
24122412
return self.getOutput()

0 commit comments

Comments
 (0)