From e78f63280eb1c289b51f24a730c7313caebef9ad Mon Sep 17 00:00:00 2001 From: Hans Dembinski Date: Fri, 20 Jul 2018 21:10:50 +0200 Subject: [PATCH] fix --- build/get_python_library.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build/get_python_library.py b/build/get_python_library.py index 836e6c21..8f4853bd 100644 --- a/build/get_python_library.py +++ b/build/get_python_library.py @@ -26,6 +26,8 @@ args = subp.check_output([python_config, "--ldflags"]).split() libdir = [] lib = [] +pprint(args) + for arg in args: if arg.startswith("-L"): libdir.append(arg[2:])