From 9ccf835945cc886409158e3129b56653f0c922ee Mon Sep 17 00:00:00 2001 From: Jonathan Swartz Date: Tue, 3 Sep 2024 15:37:27 +1200 Subject: [PATCH] fVDB CI fixing consistent cmake install libdir for blosc build Signed-off-by: Jonathan Swartz --- fvdb/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fvdb/setup.py b/fvdb/setup.py index 91872554b6..e76f40b1f8 100644 --- a/fvdb/setup.py +++ b/fvdb/setup.py @@ -88,7 +88,7 @@ def build_cmake_project(base_path, cmake_args): os.makedirs(cmake_build_dir, exist_ok=True) os.makedirs(cmake_install_dir, exist_ok=True) subprocess.check_call( - ["cmake", base_path, f"-DCMAKE_INSTALL_PREFIX={cmake_install_dir}"] + cmake_args, cwd=cmake_build_dir + ["cmake", base_path, f"-DCMAKE_INSTALL_PREFIX={cmake_install_dir}", "-DCMAKE_INSTALL_LIBDIR=lib"] + cmake_args, cwd=cmake_build_dir ) subprocess.check_call(["cmake", "--build", ".", "--target", "install"], cwd=cmake_build_dir) return cmake_install_dir