From: John Snow Date: Thu, 11 May 2023 03:54:32 +0000 (-0400) Subject: configure: Add courtesy hint to Python version failure message X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=e46b82a03cf2c7d9edd5c58e0d77515e53f66190;p=qemu.git configure: Add courtesy hint to Python version failure message If we begin requiring Python 3.7+, a few platforms are going to need to install an additional Python interpreter package. As a courtesy to the user, suggest the optional package they might need to install. This will hopefully minimize any downtime caused by the change in Python dependency. Signed-off-by: John Snow Reviewed-by: Philippe Mathieu-Daudé Message-Id: <20230221012456.2607692-3-jsnow@redhat.com> Signed-off-by: Paolo Bonzini Message-Id: <20230511035435.734312-25-jsnow@redhat.com> Signed-off-by: Paolo Bonzini --- diff --git a/configure b/configure index 28d5ced335..1ce0e48f31 100755 --- a/configure +++ b/configure @@ -1091,7 +1091,10 @@ fi if ! check_py_version "$python"; then error_exit "Cannot use '$python', Python >= 3.7 is required." \ - "Use --python=/path/to/python to specify a supported Python." + "Use --python=/path/to/python to specify a supported Python." \ + "Maybe try:" \ + " openSUSE Leap 15.3+: zypper install python39" \ + " CentOS 8: dnf install python38" fi # Resolve PATH