mirror of
https://github.com/Z3Prover/z3
synced 2025-04-08 10:25:18 +00:00
Fix typo (missing argument) that I missed that didn't fire because
I did not test on Windows.
This commit is contained in:
parent
d6fa0583ab
commit
6984070b3a
|
@ -1242,7 +1242,7 @@ class DLLComponent(Component):
|
|||
MakeRuleCmd.install_files(out, dllfile, dllInstallPath)
|
||||
pythonPkgDirWithoutPrefix = strip_path_prefix(PYTHON_PACKAGE_DIR, PREFIX)
|
||||
if IS_WINDOWS:
|
||||
MakeRuleCmd.install_files(dllfile, os.path.join(pythonPkgDirWithoutPrefix, dllfile))
|
||||
MakeRuleCmd.install_files(out, dllfile, os.path.join(pythonPkgDirWithoutPrefix, dllfile))
|
||||
else:
|
||||
# Create symbolic link to save space.
|
||||
# Compute the relative path from the python package directory
|
||||
|
|
Loading…
Reference in a new issue