Skip to content

Commit 3a781f9

Browse files
committed
qa/run-standalone.sh: fix python path
Signed-off-by: Sage Weil <[email protected]>
1 parent 1e36be9 commit 3a781f9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

qa/run-standalone.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ function get_python_path() {
2020
py_ver=3
2121
fi
2222
fi
23-
echo $(realpath ../src/pybind):$(pwd)/lib/cython_modules/lib.$py_ver
23+
python_common=$(realpath ../src/python-common)
24+
echo $(realpath ../src/pybind):$(pwd)/lib/cython_modules/lib.$py_ver:$python_common
2425
}
2526

2627
if [ `uname` = FreeBSD ]; then

0 commit comments

Comments
 (0)