Skip to content

Commit 713688d

Browse files
committed
Fix linux building
1 parent a914eef commit 713688d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ def build_extension(self, ext):
105105

106106
python_root_dir = sys.exec_prefix
107107
if platform.system() == "Linux":
108-
python_root_dir = str(pathlib.Path(get_python_lib_path()).parent.parent)
108+
python_root_dir = str(pathlib.Path(get_python_lib_path()).parent.parent.parent)
109109

110110
config = "Debug" if self.debug or self.build_for_coverage else "Release"
111111
cmake_args = [

0 commit comments

Comments
 (0)