diff options
author | Joey Hess <joey@kodama.kitenet.net> | 2007-11-02 23:21:03 -0400 |
---|---|---|
committer | Joey Hess <joey@kodama.kitenet.net> | 2007-11-02 23:21:03 -0400 |
commit | 92e38dee858cbb68f6f986d3faac3da48d714efc (patch) | |
tree | 714c87108e22a1f44b1e766c757dfb2bf02ec0a3 /autoscripts/postinst-icons | |
parent | 9226b1d07f2d65c3d7b43cf1d69947132a5cdab1 (diff) | |
download | debhelper-92e38dee858cbb68f6f986d3faac3da48d714efc.tar.gz |
* dh_icons: Now that GTK 2.12 has entered testing, use the much simpler to
call update-icon-caches command. Thanks, Josselin Mouette.
Diffstat (limited to 'autoscripts/postinst-icons')
-rw-r--r-- | autoscripts/postinst-icons | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/autoscripts/postinst-icons b/autoscripts/postinst-icons index 951b613d..9e00f039 100644 --- a/autoscripts/postinst-icons +++ b/autoscripts/postinst-icons @@ -1,7 +1,3 @@ -if which gtk-update-icon-cache >/dev/null 2>&1; then - for dir in #DIRLIST#; do - if [ -f "$dir"/index.theme ] && [ -f "$dir"/icon-theme.cache ]; then - gtk-update-icon-cache --force --quiet "$dir" - fi - done +if which update-icon-caches >/dev/null 2>&1 ; then + update-icon-caches #DIRLIST# fi |