modules/python: don't inherit from InterpreterObject

Because ExternalProjectHolder already does
pull/4616/head
Dylan Baker 6 years ago
parent 03805287e5
commit 3d322b3381
  1. 4
      mesonbuild/modules/python.py

@ -284,9 +284,9 @@ print (json.dumps ({
}))
'''
class PythonInstallation(ExternalProgramHolder, InterpreterObject):
class PythonInstallation(ExternalProgramHolder):
def __init__(self, interpreter, python, info):
InterpreterObject.__init__(self)
ExternalProgramHolder.__init__(self, python)
self.interpreter = interpreter
prefix = self.interpreter.environment.coredata.get_builtin_option('prefix')

Loading…
Cancel
Save