commit: f3ef3c17ac1fb2bb53050a28a0e409c30282c5d2
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 6 21:07:09 2016 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Feb 6 21:07:09 2016 +0000
URL:
https://gitweb.gentoo.org/proj/eselect-python.git/commit/?id=f3ef3c17
post_update: Use only CPython for manpages, frameworks and python-docs
python.eselect.in | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/python.eselect.in b/python.eselect.in
index 5f22614..37a824c 100644
--- a/python.eselect.in
+++ b/python.eselect.in
@@ -163,13 +163,13 @@ set_python_docs() {
# Perform all necessary updates following preference list change.
post_update() {
- local main_interp=$(do_show)
+ local main_cpython=$(do_show --cpython)
# TODO: update only when necessary
- set_man_symlink "${main_interp}"
- set_osx_framework "${main_interp}"
- set_python_docs "${main_interp}"
+ set_man_symlink "${main_cpython}"
+ set_osx_framework "${main_cpython}"
+ set_python_docs "${main_cpython}"
}
### edit action ###