Skip to content

Commit 03ffb5b

Browse files
tristan957jpakkane
authored andcommitted
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: mesonbuild#12772
1 parent f5ec07e commit 03ffb5b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mesonbuild/mesonmain.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ def run(original_args: T.List[str], mainfile: str) -> int:
257257
# https://github.com/mesonbuild/meson/issues/3653
258258
if sys.platform == 'cygwin' and os.environ.get('MSYSTEM', '') not in ['MSYS', '']:
259259
mlog.error('This python3 seems to be msys/python on MSYS2 Windows, but you are in a MinGW environment')
260-
mlog.error('Please install and use mingw-w64-x86_64-python3 and/or mingw-w64-x86_64-meson with Pacman')
260+
mlog.error('Please install it via https://packages.msys2.org/base/mingw-w64-python')
261261
return 2
262262

263263
args = original_args[:]

0 commit comments

Comments
 (0)