diff options
author | Michał Górny <mgorny@gentoo.org> | 2017-07-08 21:47:26 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2017-09-08 09:32:25 +0200 |
commit | edb22af023c9c0f3e4bce5d04d5f42482ffb909c (patch) | |
tree | 70d4d0dc2972c201bb4a52320df6bde58086663a /eclass/kde5.eclass | |
parent | fdo-mime.eclass: Mark the eclass as deprecated (diff) | |
download | gentoo-edb22af023c9c0f3e4bce5d04d5f42482ffb909c.tar.gz gentoo-edb22af023c9c0f3e4bce5d04d5f42482ffb909c.tar.bz2 gentoo-edb22af023c9c0f3e4bce5d04d5f42482ffb909c.zip |
*.eclass: Include GNOME2_ECLASS_ICONS condition in postrm as well
The original GNOME2_ECLASS_ICONS patch has moved the condition from
gnome2_icon_cache_update to postinst phases of functions using
the preinst/postinst logic but accidentally omitted postrm. Include it
there as well to restore the old behavior.
Diffstat (limited to 'eclass/kde5.eclass')
-rw-r--r-- | eclass/kde5.eclass | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/eclass/kde5.eclass b/eclass/kde5.eclass index b48dd4b46b15..256c59bc8737 100644 --- a/eclass/kde5.eclass +++ b/eclass/kde5.eclass @@ -803,7 +803,9 @@ kde5_pkg_postinst() { kde5_pkg_postrm() { debug-print-function ${FUNCNAME} "$@" - gnome2_icon_cache_update + if [[ -n ${GNOME2_ECLASS_ICONS} ]]; then + gnome2_icon_cache_update + fi xdg_pkg_postrm } |