aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/interpreter.py
diff options
context:
space:
mode:
authorJon Turney <jon.turney@dronecode.org.uk>2018-06-22 17:45:58 +0100
committerNirbheek Chauhan <nirbheek.chauhan@gmail.com>2018-06-30 13:28:15 +0000
commitfd4872ae77015983370f01013c4826f36c91907a (patch)
tree64e2c73f97070b81d92d9b01c288b4fa17573380 /mesonbuild/interpreter.py
parent9efdcfbb8d49286e08b7bbb50afd59f7f3d93f4a (diff)
downloadmeson-fd4872ae77015983370f01013c4826f36c91907a.zip
meson-fd4872ae77015983370f01013c4826f36c91907a.tar.gz
meson-fd4872ae77015983370f01013c4826f36c91907a.tar.bz2
More tests to cover missing fallback for a non-found dependency
Fix logic so we correctly raise an exception about missing fallback in the case where the dependency is required.
Diffstat (limited to 'mesonbuild/interpreter.py')
-rw-r--r--mesonbuild/interpreter.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/mesonbuild/interpreter.py b/mesonbuild/interpreter.py
index f0e7106..c469ec6 100644
--- a/mesonbuild/interpreter.py
+++ b/mesonbuild/interpreter.py
@@ -2841,7 +2841,7 @@ external dependencies (including libraries) must go to "dependencies".''')
# Unless a fallback exists and is forced ...
if self.coredata.wrap_mode == WrapMode.forcefallback and 'fallback' in kwargs:
- exception = DependencyException("fallback for %s not found" % name)
+ pass
# ... search for it outside the project
elif name != '':
try:
@@ -2852,6 +2852,8 @@ external dependencies (including libraries) must go to "dependencies".''')
# Search inside the projects list
if not dep.found():
if 'fallback' in kwargs:
+ if not exception:
+ exception = DependencyException("fallback for %s not found" % display_name)
fallback_dep = self.dependency_fallback(name, kwargs)
if fallback_dep:
# Never add fallback deps to self.coredata.deps since we