correct install location

This commit is contained in:
Jeff Neel 2021-01-07 15:09:11 -06:00 committed by Pedro Algarvio
parent 8ec0e8d130
commit 168b6787d8

View file

@ -4217,6 +4217,14 @@ install_centos_stable_deps() {
__PACKAGES="${__PACKAGES} PyYAML"
fi
fi
else
if [ -n "$_PY_EXE" ] && [ "$_PY_MAJOR_VERSION" -eq 3 ]; then
if [ "$DISTRO_MAJOR_VERSION" -ge 8 ]; then
__PACKAGES="${__PACKAGES} python3-setuptools"
else
__PACKAGES="${__PACKAGES} python36-setuptools"
fi
fi
fi
# shellcheck disable=SC2086