mirror of
https://github.com/Z3Prover/z3
synced 2025-04-15 13:28:47 +00:00
Merge branch 'master' of https://github.com/NikolajBjorner/z3
This commit is contained in:
commit
78f44c30a7
|
@ -1300,7 +1300,7 @@ class DLLComponent(Component):
|
||||||
dllfile = '%s$(SO_EXT)' % self.dll_name
|
dllfile = '%s$(SO_EXT)' % self.dll_name
|
||||||
dllInstallPath = os.path.join(INSTALL_LIB_DIR, dllfile)
|
dllInstallPath = os.path.join(INSTALL_LIB_DIR, dllfile)
|
||||||
MakeRuleCmd.install_files(out, dllfile, dllInstallPath)
|
MakeRuleCmd.install_files(out, dllfile, dllInstallPath)
|
||||||
if not python_install_enabled():
|
if not is_python_install_enabled():
|
||||||
return
|
return
|
||||||
pythonPkgDirWithoutPrefix = strip_path_prefix(PYTHON_PACKAGE_DIR, PREFIX)
|
pythonPkgDirWithoutPrefix = strip_path_prefix(PYTHON_PACKAGE_DIR, PREFIX)
|
||||||
if IS_WINDOWS:
|
if IS_WINDOWS:
|
||||||
|
@ -1345,8 +1345,8 @@ class PythonInstallComponent(Component):
|
||||||
Component.__init__(self, name, None, [])
|
Component.__init__(self, name, None, [])
|
||||||
|
|
||||||
def main_component(self):
|
def main_component(self):
|
||||||
return PYTHON_INSTALL_ENABLED
|
return is_python_install_enabled()
|
||||||
|
|
||||||
def install_deps(self, out):
|
def install_deps(self, out):
|
||||||
if not self.main_component():
|
if not self.main_component():
|
||||||
return
|
return
|
||||||
|
|
Loading…
Reference in a new issue