src.ctf.lttng-live: remove some goto error-handling
[babeltrace.git] / m4 / ae_python_modules.m4
1 # SPDX-License-Identifier: FSFULLR
2 #
3 # Copyright (C) 2014 Jérémie Galarneau <jeremie.galarneau@efficios.com>
4 #
5 # ae_python_modules.m4 -- Get the Python modules install path
6
7 # While extra Python modules are generaly installed in the Python
8 # interpreter's "site-packages" directory, Debian prefers using the
9 # "dist-packages" nomenclature. This macro uses the interpreter
10 # designated by the PYTHON variable to check the interpreter's PATH
11 # and sets the PYTHON_MODULES_PATH by taking the prefix into account.
12
13 #serial 1
14
15 # AE_PATH_PYTHON_MODULES(PYTHON)
16 # ---------------------------------------------------------------------------
17 AC_DEFUN([AE_PATH_PYTHON_MODULES],
18 [prog="import sys
19 for path in sys.path:
20 if path.endswith(\"-packages\"):
21 print(path[[path.find(\"/lib\"):]])
22 break"
23 PYTHON_MODULES_PATH=`${$1} -c "$prog"`])
This page took 0.030062 seconds and 4 git commands to generate.