From 54213683e2d97c1b553282d4e0483387b4e7679f Mon Sep 17 00:00:00 2001 From: Xavier Claessens Date: Tue, 15 Mar 2022 21:51:16 -0400 Subject: python: Remove warning about invalid install path It was originally added because proper detection was not working on Debian, but that has been fixed since. It was causing annoying warning by default when prefix is /usr/local that can only be avoided by setting options. --- mesonbuild/modules/python.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/mesonbuild/modules/python.py b/mesonbuild/modules/python.py index 70ae3c1..3bbccd1 100644 --- a/mesonbuild/modules/python.py +++ b/mesonbuild/modules/python.py @@ -364,7 +364,6 @@ print(json.dumps({ 'paths': paths, 'sysconfig_paths': sysconfig.get_paths(), 'install_paths': install_paths, - 'sys_paths': sys.path, 'version': sysconfig.get_python_version(), 'platform': sysconfig.get_platform(), 'is_pypy': '__pypy__' in sys.builtin_module_names, @@ -454,14 +453,6 @@ class PythonExternalProgram(ExternalProgram): # inside a venv, deb_system is *never* active hence info['paths'] may be wrong rel_path = self.info['sysconfig_paths'][key] - # Use python's path relative to prefix, and warn if that's not a location - # python will lookup for modules. - abs_path = Path(state.get_option('prefix'), rel_path) - sys_paths = [Path(i) for i in self.info['sys_paths']] - if abs_path not in sys_paths: - mlog.warning('Python files installed by Meson might not be found by python interpreter.\n', - f'This warning can be avoided by setting "python.{key}dir" option.', - once=True) return rel_path -- cgit v1.1