From 3a781f9577dac407f0f57275dc8df5a0141ac5c5 Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Mon, 19 Aug 2019 12:33:05 -0500 Subject: [PATCH] qa/run-standalone.sh: fix python path Signed-off-by: Sage Weil --- qa/run-standalone.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/qa/run-standalone.sh b/qa/run-standalone.sh index 9c264d5d0e4ab..617f07e75986b 100755 --- a/qa/run-standalone.sh +++ b/qa/run-standalone.sh @@ -20,7 +20,8 @@ function get_python_path() { py_ver=3 fi fi - echo $(realpath ../src/pybind):$(pwd)/lib/cython_modules/lib.$py_ver + python_common=$(realpath ../src/python-common) + echo $(realpath ../src/pybind):$(pwd)/lib/cython_modules/lib.$py_ver:$python_common } if [ `uname` = FreeBSD ]; then -- 2.39.5