From d785c053a982bddefd7014dc6856d1af345fe9fb Mon Sep 17 00:00:00 2001 From: Alon Bar-Lev Date: Tue, 11 Apr 2017 01:55:13 +0300 Subject: [PATCH] python: fix run-tests missing python_libdir * lang/python/tests/run-tests.py: Set python_libdir if --python-libdir is set. Signed-off-by: Alon Bar-Lev --- lang/python/tests/run-tests.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lang/python/tests/run-tests.py b/lang/python/tests/run-tests.py index 78a0ec24..95df1978 100644 --- a/lang/python/tests/run-tests.py +++ b/lang/python/tests/run-tests.py @@ -72,7 +72,9 @@ for interpreter in args.interpreters: version = subprocess.check_output( [interpreter, "-c", "import sys; print('{0}.{1}'.format(sys.version_info[0], sys.version_info[1]))"]).strip().decode() - if not args.python_libdir: + if args.python_libdir: + python_libdir = args.python_libdir + else: pattern = os.path.join(args.builddir, "..", "{0}-gpg".format(os.path.basename(interpreter)), "lib*")