aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Partin <tristan@partin.io>2024-04-25 14:59:13 -0500
committerJussi Pakkanen <jpakkane@gmail.com>2024-06-23 22:01:14 +0300
commit03ffb5bd6f2e441227e0a1758b258c2a4d3d58d7 (patch)
tree08941d0c0fa523a4bca7ece521dadd753a24c953
parentf5ec07e7c35ac2bf7ff9ee13ccf2818da53baabd (diff)
downloadmeson-03ffb5bd6f2e441227e0a1758b258c2a4d3d58d7.zip
meson-03ffb5bd6f2e441227e0a1758b258c2a4d3d58d7.tar.gz
meson-03ffb5bd6f2e441227e0a1758b258c2a4d3d58d7.tar.bz2
Suggest mingw Python URL instead of specific package names
Suggested by @lazka in order to be clearer when delineating between mingw-w64-x86_64-python and mingw-w64-ucrt-x86_64-python. Fixes: #12772
-rw-r--r--mesonbuild/mesonmain.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/mesonmain.py b/mesonbuild/mesonmain.py
index 62ed891..c486dd8 100644
--- a/mesonbuild/mesonmain.py
+++ b/mesonbuild/mesonmain.py
@@ -257,7 +257,7 @@ def run(original_args: T.List[str], mainfile: str) -> int:
# https://github.com/mesonbuild/meson/issues/3653
if sys.platform == 'cygwin' and os.environ.get('MSYSTEM', '') not in ['MSYS', '']:
mlog.error('This python3 seems to be msys/python on MSYS2 Windows, but you are in a MinGW environment')
- mlog.error('Please install and use mingw-w64-x86_64-python3 and/or mingw-w64-x86_64-meson with Pacman')
+ mlog.error('Please install it via https://packages.msys2.org/base/mingw-w64-python')
return 2
args = original_args[:]