diff options
| author | jwijenbergh <jeroenwijenbergh@protonmail.com> | 2022-05-10 16:16:00 +0200 |
|---|---|---|
| committer | jwijenbergh <jeroenwijenbergh@protonmail.com> | 2022-05-10 16:16:00 +0200 |
| commit | fe8c69997c3d47970cf06e1a6d6c74841eee7b50 (patch) | |
| tree | baeb21c889732f85eb0691567f1d9ca98dc0ca69 /wrappers/python/setup.py | |
| parent | cd5019305db965b4e3acb028ec1f1524d0199917 (diff) | |
Python: Fix lib path
Diffstat (limited to 'wrappers/python/setup.py')
| -rwxr-xr-x | wrappers/python/setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wrappers/python/setup.py b/wrappers/python/setup.py index 3ae926f..533ba82 100755 --- a/wrappers/python/setup.py +++ b/wrappers/python/setup.py @@ -76,7 +76,7 @@ class bdist_wheel(_bdist_wheel): print(f"Building wheel for platform {self.plat_name}") # setuptools will only use paths inside the package for package_data, so we copy the library - tmp_lib = shutil.copy(f"{self.exports_lib_path}/{libpath}", "eduvpncommon/lib/") + tmp_lib = shutil.copy(f"{self.exports_lib_path}/{libpath}", "src/lib/") _bdist_wheel.run(self) os.remove(tmp_lib) |
