From 8fec2f69925752491cc68ef8eea72f97198ae55f Mon Sep 17 00:00:00 2001 From: lazymio Date: Tue, 3 May 2022 11:11:29 +0200 Subject: [PATCH] Fetch static archive in the root dir --- bindings/python/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/python/setup.py b/bindings/python/setup.py index cd7e961c..ca733bec 100755 --- a/bindings/python/setup.py +++ b/bindings/python/setup.py @@ -124,7 +124,7 @@ def build_libraries(): obj_dir = os.path.join(BUILD_DIR, conf) shutil.copy(os.path.join(obj_dir, LIBRARY_FILE), LIBS_DIR) - shutil.copy(os.path.join(obj_dir, STATIC_LIBRARY_FILE), LIBS_DIR) + shutil.copy(os.path.join(BUILD_DIR, STATIC_LIBRARY_FILE), LIBS_DIR) else: # platform description refs at https://docs.python.org/2/library/sys.html#sys.platform if not os.path.exists(BUILD_DIR):