diff options
author | Ross Burton <ross.burton@intel.com> | 2015-10-27 17:52:47 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-10-29 07:31:16 +0000 |
commit | da386d3d21cb4f87336f200906b717387d3a8c21 (patch) | |
tree | 418410c96dcd1b5483f36d0f888adb59217f4160 /scripts | |
parent | 63a0311497a0f9d3a748da254b631d3c7edc1364 (diff) | |
download | poky-da386d3d21cb4f87336f200906b717387d3a8c21.tar.gz |
gtk-icon-cache: pass the native libdir to the intercept
The intercept runs against the native sysroot so we need to pass it
the native libdir instead of the target libdir, as otherwise it will
use target paths (such as lib64) in the native sysroot.
(From OE-Core rev: 0fe84007176c98644b1917966c98501beb7e0ce2)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/postinst-intercepts/update_icon_cache | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/postinst-intercepts/update_icon_cache b/scripts/postinst-intercepts/update_icon_cache index df9bdecc99..9cf2a72a0c 100644 --- a/scripts/postinst-intercepts/update_icon_cache +++ b/scripts/postinst-intercepts/update_icon_cache | |||
@@ -3,7 +3,7 @@ | |||
3 | set -e | 3 | set -e |
4 | 4 | ||
5 | # update native pixbuf loaders | 5 | # update native pixbuf loaders |
6 | $STAGING_DIR_NATIVE/${libdir}/gdk-pixbuf-2.0/gdk-pixbuf-query-loaders --update-cache | 6 | $STAGING_DIR_NATIVE/${libdir_native}/gdk-pixbuf-2.0/gdk-pixbuf-query-loaders --update-cache |
7 | 7 | ||
8 | for icondir in $D/usr/share/icons/*/ ; do | 8 | for icondir in $D/usr/share/icons/*/ ; do |
9 | if [ -d $icondir ] ; then | 9 | if [ -d $icondir ] ; then |