aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/modules/python.py
diff options
context:
space:
mode:
authorChristoph Reiter <reiter.christoph@gmail.com>2019-02-02 15:54:05 +0100
committerJussi Pakkanen <jpakkane@gmail.com>2019-02-04 20:27:26 +0100
commit1bd14b52b26b0f4ec207bf7e38813b82bfc15f86 (patch)
tree39cc7649f4cc755975fed4254388383be5e25f00 /mesonbuild/modules/python.py
parent69cb314718a96456284749ecb7b1138c3900d8b6 (diff)
downloadmeson-1bd14b52b26b0f4ec207bf7e38813b82bfc15f86.zip
meson-1bd14b52b26b0f4ec207bf7e38813b82bfc15f86.tar.gz
meson-1bd14b52b26b0f4ec207bf7e38813b82bfc15f86.tar.bz2
python: don't require a Python lib in case we don't link against it. Fixes #4841
In case extensions aren't linked against libpython we can't assume one exists at all or is available in a known directory.
Diffstat (limited to 'mesonbuild/modules/python.py')
-rw-r--r--mesonbuild/modules/python.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/mesonbuild/modules/python.py b/mesonbuild/modules/python.py
index 1d41165..049c457 100644
--- a/mesonbuild/modules/python.py
+++ b/mesonbuild/modules/python.py
@@ -60,6 +60,7 @@ class PythonDependency(ExternalDependency):
self.pkgdep = None
self.variables = python_holder.variables
self.paths = python_holder.paths
+ self.link_libpython = python_holder.link_libpython
if mesonlib.version_compare(self.version, '>= 3.0'):
self.major_version = 3
else:
@@ -149,11 +150,11 @@ class PythonDependency(ExternalDependency):
libdirs = []
largs = self.clib_compiler.find_library(libname, environment, libdirs)
-
- self.is_found = largs is not None
- if self.is_found:
+ if largs is not None:
self.link_args = largs
+ self.is_found = largs is not None or not self.link_libpython
+
inc_paths = mesonlib.OrderedSet([
self.variables.get('INCLUDEPY'),
self.paths.get('include'),