Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion genup
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,11 @@ bring_old_perl_modules_up_to_date() {
}
cleanup_python_config() {
# remove uninstalled versions from /etc/python-exec/python-exec.conf
eselect python cleanup
# since this is no longer present on new Gentoo installs unless you
# install it yourself, here's a check for eselect python
if [ -f /usr/share/eselect/modules/python.eselect ]; then
eselect python cleanup
fi
}
run_custom_updaters_if_present() {
# if not inhibited, find any executable files in the /etc/genup/updaters.d
Expand Down