mirror of
https://github.com/Z3Prover/z3
synced 2025-04-08 02:15:19 +00:00
Fixing building under OS X
Previous method is_osx_hack didn't exist, possibly wasn't cleaned up. This change has been tested and Z3 compiles successfully within a 2.7 virtualenv running on OS X 10.10.5.
This commit is contained in:
parent
a30fe1e2ec
commit
e98ee6ec06
|
@ -1378,7 +1378,7 @@ class PythonInstallComponent(Component):
|
|||
MakeRuleCmd.make_install_directory(out, self.pythonPkgDir, in_prefix=self.in_prefix_install)
|
||||
|
||||
# Sym-link or copy libz3 into python package directory
|
||||
if IS_WINDOWS or self.is_osx_hack():
|
||||
if IS_WINDOWS or IS_OSX:
|
||||
MakeRuleCmd.install_files(out,
|
||||
self.libz3Component.dll_file(),
|
||||
os.path.join(self.pythonPkgDir,
|
||||
|
|
Loading…
Reference in a new issue