diff options
author | Michael Champanis <mchampanis@users.noreply.github.com> | 2022-12-05 01:47:27 +0200 |
---|---|---|
committer | Eli Schwartz <eschwartz@archlinux.org> | 2022-12-04 22:54:47 -0500 |
commit | f194413f87c738d7118b532ed1f6dcc9629458ed (patch) | |
tree | 7e335c25f1ca01ed91d0506b019028eea097daac /mesonbuild/interpreter/interpreter.py | |
parent | 48f08a7c4988f5200ea1e39da9db7fe05b65a7a2 (diff) | |
download | meson-f194413f87c738d7118b532ed1f6dcc9629458ed.zip meson-f194413f87c738d7118b532ed1f6dcc9629458ed.tar.gz meson-f194413f87c738d7118b532ed1f6dcc9629458ed.tar.bz2 |
dependencies: only print not_found_message once
Due to an accidentally repeated line it would print twice unless
required.
Fixes #8150
Diffstat (limited to 'mesonbuild/interpreter/interpreter.py')
-rw-r--r-- | mesonbuild/interpreter/interpreter.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/mesonbuild/interpreter/interpreter.py b/mesonbuild/interpreter/interpreter.py index d5afaf3..1228caa 100644 --- a/mesonbuild/interpreter/interpreter.py +++ b/mesonbuild/interpreter/interpreter.py @@ -1706,7 +1706,6 @@ class Interpreter(InterpreterBase, HoldableObject): assert isinstance(d, Dependency) if not d.found() and not_found_message: self.message_impl([not_found_message]) - self.message_impl([not_found_message]) # Ensure the correct include type if 'include_type' in kwargs: wanted = kwargs['include_type'] |