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/Makefile | |
| parent | cd5019305db965b4e3acb028ec1f1524d0199917 (diff) | |
Python: Fix lib path
Diffstat (limited to 'wrappers/python/Makefile')
| -rw-r--r-- | wrappers/python/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/wrappers/python/Makefile b/wrappers/python/Makefile index 22e9144..1526173 100644 --- a/wrappers/python/Makefile +++ b/wrappers/python/Makefile @@ -9,13 +9,13 @@ endif # Build for current platform only pack: - mkdir -p eduvpncommon/lib + mkdir -p ./src/lib ./setup.py bdist_wheel $(SETUP_ARGS) --exports-lib-path="$(EXPORTS_LIB_PATH)" test: .try-build-lib - install "$(EXPORTS_LIB_SUBFOLDER_PATH)/$(LIB_FILE)" -Dt "eduvpncommon/lib" + install "$(EXPORTS_LIB_SUBFOLDER_PATH)/$(LIB_FILE)" -Dt "src/lib" python3 -m unittest tests - rm eduvpncommon/lib/* + rm src/lib/* clean: rm -rf build/ dist/ *.egg-info/ lib/* |
