aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/build.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2019-04-08 21:06:55 +0300
committerGitHub <noreply@github.com>2019-04-08 21:06:55 +0300
commit54db2c9babe6391bba525f92573ceeadb8303e78 (patch)
treed6505c115e68fae42eddb8b7e3337cf4606e9dda /mesonbuild/build.py
parentd72d98d3afdd0fadaf891c90a14f68c318f666fb (diff)
parent63090605a5c7f905491dccb663be8bca7d935489 (diff)
downloadmeson-54db2c9babe6391bba525f92573ceeadb8303e78.zip
meson-54db2c9babe6391bba525f92573ceeadb8303e78.tar.gz
meson-54db2c9babe6391bba525f92573ceeadb8303e78.tar.bz2
Merge pull request #5225 from dcbaker/threads-is-not-special
Threads is not special
Diffstat (limited to 'mesonbuild/build.py')
-rw-r--r--mesonbuild/build.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/mesonbuild/build.py b/mesonbuild/build.py
index bcd1754..020c47b 100644
--- a/mesonbuild/build.py
+++ b/mesonbuild/build.py
@@ -1035,6 +1035,7 @@ This will become a hard error in a future Meson release.''')
if dep not in self.external_deps:
self.external_deps.append(dep)
self.process_sourcelist(dep.get_sources())
+ self.add_deps(dep.ext_deps)
elif isinstance(dep, BuildTarget):
raise InvalidArguments('''Tried to use a build target as a dependency.
You probably should put it in link_with instead.''')