commit | 9127c1a56bc1504ae77df25b0da7a6d0a5f0bfe8 | [log] [tgz] |
---|---|---|
author | Attila Fazekas <afazekas@redhat.com> | Thu Nov 05 10:09:02 2015 +0100 |
committer | Attila Fazekas <afazekas@redhat.com> | Thu Nov 05 10:16:52 2015 +0100 |
tree | 7069df1c306c9dd8218ef1925dabeed4b3db8bbe | |
parent | 73de4a42d96780b0a14f36e43dd6cb7934101209 [diff] |
Do not remove python-pip package on Fedora-23 python on fedora 23 compiled with rewheel support, in this case the python-pip is a required package, and cannot be removed. [1] http://pkgs.fedoraproject.org/cgit/python.git/tree/python.spec?id=3b6fac0339bab69ca5fbf2881568f0565ab0e252#n174 Change-Id: I499b7bec97c4360b32d156079f2b7f3923e3888a
diff --git a/tools/install_pip.sh b/tools/install_pip.sh index 13c1786..ab5efb2 100755 --- a/tools/install_pip.sh +++ b/tools/install_pip.sh
@@ -110,7 +110,11 @@ # Do pip # Eradicate any and all system packages -uninstall_package python-pip + +# python in f23 depends on the python-pip package +if ! { is_fedora && [[ $DISTRO == "f23" ]]; }; then + uninstall_package python-pip +fi install_get_pip