Merge "Fix Python3 get_python_exec_prefix on Fedora 27"

This commit is contained in:
Zuul 2018-01-15 13:48:07 +00:00 committed by Gerrit Code Review
commit 67d26e2161
1 changed files with 5 additions and 1 deletions

View File

@ -49,7 +49,11 @@ function get_python_exec_prefix {
fi
$xtrace
if is_fedora || is_suse; then
if python3_enabled && [ "$os_VENDOR" = "Fedora" -a $os_RELEASE -gt 26 ]; then
# Default Python 3 install prefix changed to /usr/local in Fedora 27:
# https://fedoraproject.org/wiki/Changes/Making_sudo_pip_safe
echo "/usr/local/bin"
elif is_fedora || is_suse; then
echo "/usr/bin"
else
echo "/usr/local/bin"