diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2019-02-11 23:09:22 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2019-02-15 00:43:55 +0100 |
commit | 800dd32fd32c19ba63832d3afcee6c793aa0fa73 (patch) | |
tree | 63581e59871ced83ef83b1d7185c4e03f6b3dd82 /eclass | |
parent | kde5.eclass: Cleanup functions rented from xdg.eclass (diff) | |
download | gentoo-800dd32fd32c19ba63832d3afcee6c793aa0fa73.tar.gz gentoo-800dd32fd32c19ba63832d3afcee6c793aa0fa73.tar.bz2 gentoo-800dd32fd32c19ba63832d3afcee6c793aa0fa73.zip |
kde5.eclass: Drop gnome2_icon_cache_update (now duplicate in EAPI-6)
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/kde5.eclass | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/eclass/kde5.eclass b/eclass/kde5.eclass index e3c4bc9c9231..eaa81039183d 100644 --- a/eclass/kde5.eclass +++ b/eclass/kde5.eclass @@ -722,7 +722,6 @@ kde5_src_install() { kde5_pkg_preinst() { debug-print-function ${FUNCNAME} "$@" - [[ ${EAPI} == 6 ]] && gnome2_icon_savelist xdg_pkg_preinst } @@ -732,9 +731,6 @@ kde5_pkg_preinst() { kde5_pkg_postinst() { debug-print-function ${FUNCNAME} "$@" - if [[ ${EAPI} == 6 && -n ${GNOME2_ECLASS_ICONS} ]]; then - gnome2_icon_cache_update - fi xdg_pkg_postinst if [[ -z ${I_KNOW_WHAT_I_AM_DOING} ]]; then @@ -753,9 +749,6 @@ kde5_pkg_postinst() { kde5_pkg_postrm() { debug-print-function ${FUNCNAME} "$@" - if [[ ${EAPI} == 6 && -n ${GNOME2_ECLASS_ICONS} ]]; then - gnome2_icon_cache_update - fi xdg_pkg_postrm } |