Merge "Enable openSUSE to work in Python 3.x environments"

This commit is contained in:
Jenkins 2017-03-27 20:58:45 +00:00 committed by Gerrit Code Review
commit 4a857e85f4

View File

@ -553,6 +553,8 @@ function python3_enabled {
function install_python3 {
if is_ubuntu; then
apt_get install python${PYTHON3_VERSION} python${PYTHON3_VERSION}-dev
elif is_suse; then
install_package python3-devel python3-dbm
fi
}