summaryrefslogtreecommitdiff
path: root/wrappers/python/Makefile
diff options
context:
space:
mode:
authorjwijenbergh <jeroenwijenbergh@protonmail.com>2022-09-27 12:58:39 +0200
committerjwijenbergh <jeroenwijenbergh@protonmail.com>2022-09-27 12:58:39 +0200
commit5b16dc84e12294b83c100e820b869720bfecec68 (patch)
treee0d88a0e8095996e7d2ae03571cb06a8d49fa38a /wrappers/python/Makefile
parent2cffe792d8070f37345056e8c88379aa8a2774fd (diff)
Python: Fix test lib path
Diffstat (limited to 'wrappers/python/Makefile')
-rw-r--r--wrappers/python/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/wrappers/python/Makefile b/wrappers/python/Makefile
index 1526173..d5e9071 100644
--- a/wrappers/python/Makefile
+++ b/wrappers/python/Makefile
@@ -9,13 +9,13 @@ endif
# Build for current platform only
pack:
- mkdir -p ./src/lib
+ mkdir -p ./eduvpn_common/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 "src/lib"
+ install "$(EXPORTS_LIB_SUBFOLDER_PATH)/$(LIB_FILE)" -Dt "eduvpn_common/lib"
python3 -m unittest tests
- rm src/lib/*
+ rm eduvpn_common/lib/*
clean:
rm -rf build/ dist/ *.egg-info/ lib/*