python module: fix error message mentioning setuptools

We use distutils, not setuptools, for probing information.
0.59
Eli Schwartz 4 years ago committed by Nirbheek Chauhan
parent 59eef4397d
commit 8b903efa53
  1. 2
      mesonbuild/modules/python.py

@ -649,7 +649,7 @@ class PythonModule(ExtensionModule):
return python
else:
if required:
raise mesonlib.MesonException(f'{python} is not a valid python or it is missing setuptools')
raise mesonlib.MesonException(f'{python} is not a valid python or it is missing distutils')
return NonExistingExternalProgram()
raise mesonlib.MesonBugException('Unreachable code was reached (PythonModule.find_installation).')

Loading…
Cancel
Save