summaryrefslogtreecommitdiff
path: root/poky/scripts/postinst-intercepts/update_icon_cache
diff options
context:
space:
mode:
authorjmbills <42755197+jmbills@users.noreply.github.com>2019-10-25 19:18:16 +0300
committerGitHub <noreply@github.com>2019-10-25 19:18:16 +0300
commit0dbb60593ebb5a62190c0e6cff7f1770493303a2 (patch)
tree0df2ce67404dbca3ddc4ee063dbfd9ae455be682 /poky/scripts/postinst-intercepts/update_icon_cache
parent34a3942845ac3264ce27c648ae5486d302c3e6d8 (diff)
parentcc9cea46d74d280de03c713c8b555153fd811f09 (diff)
downloadopenbmc-0dbb60593ebb5a62190c0e6cff7f1770493303a2.tar.xz
Merge branch 'intel' into intel2
Diffstat (limited to 'poky/scripts/postinst-intercepts/update_icon_cache')
-rw-r--r--poky/scripts/postinst-intercepts/update_icon_cache16
1 files changed, 0 insertions, 16 deletions
diff --git a/poky/scripts/postinst-intercepts/update_icon_cache b/poky/scripts/postinst-intercepts/update_icon_cache
deleted file mode 100644
index 212209a9d..000000000
--- a/poky/scripts/postinst-intercepts/update_icon_cache
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/bin/sh
-#
-# SPDX-License-Identifier: MIT
-#
-
-set -e
-
-# update native pixbuf loaders
-$STAGING_DIR_NATIVE/${libdir_native}/gdk-pixbuf-2.0/gdk-pixbuf-query-loaders --update-cache
-
-for icondir in $D/usr/share/icons/*/ ; do
- if [ -d $icondir ] ; then
- gtk-update-icon-cache -fqt $icondir
- fi
-done
-