diff options
-rw-r--r-- | mesonbuild/dependencies/base.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/mesonbuild/dependencies/base.py b/mesonbuild/dependencies/base.py index d2f863c..bbe025e 100644 --- a/mesonbuild/dependencies/base.py +++ b/mesonbuild/dependencies/base.py @@ -402,9 +402,10 @@ class ConfigToolDependency(ExternalDependency): tools = [tool] else: if self.env.is_cross_build() and not self.native: - mlog.warning('No entry for {0} specified in your cross file. ' - 'Falling back to searching PATH. This may find a ' - 'native version of {0}!'.format(self.tool_name)) + mlog.deprecation('No entry for {0} specified in your cross file. ' + 'Falling back to searching PATH. This may find a ' + 'native version of {0}! This will become a hard ' + 'error in a future version of meson'.format(self.tool_name)) tools = [[t] for t in self.tools] best_match = (None, None) |