We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6498a9b commit 469e903Copy full SHA for 469e903
mx.graalpython/mx_graalpython.py
@@ -1996,6 +1996,12 @@ def build(self):
1996
# n.b.: we do the following to ensure that there's a directory when the
1997
# importlib PathFinder initializes it's directory finders
1998
mx.ensure_dir_exists(os.path.join(self.subject.get_output_root(), "modules"))
1999
+ # TODO: backwards compat, remove once EE is updated
2000
+ if not hasattr(self.subject, "args"):
2001
+ self.subject.args = [
2002
+ os.path.join(self.src_dir(), "setup.py"),
2003
+ self.subject.get_output_root()
2004
+ ]
2005
return super().build()
2006
2007
def clean(self, forBuild=False):
0 commit comments