diff options
author | Laurentiu Palcu <laurentiu.palcu@intel.com> | 2013-04-26 11:03:59 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-04-29 14:43:53 +0100 |
commit | 21ae18ca5e3be0b3e5cb0fdcf19b1476dbd38b0c (patch) | |
tree | be27d69fc654a91372ebfa69b261911596ea7160 | |
parent | 0c6ddb84043f0f917543cdaf4814efc15cd0273f (diff) | |
download | openembedded-core-21ae18ca5e3be0b3e5cb0fdcf19b1476dbd38b0c.tar.gz openembedded-core-21ae18ca5e3be0b3e5cb0fdcf19b1476dbd38b0c.tar.bz2 openembedded-core-21ae18ca5e3be0b3e5cb0fdcf19b1476dbd38b0c.zip |
pango: fix postinstall when using multilib
The pango-query-modules binary gets a multilib prefix and the
postinstall has to call the appropriate binary.
Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
-rw-r--r-- | meta/recipes-graphics/pango/pango.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-graphics/pango/pango.inc b/meta/recipes-graphics/pango/pango.inc index f62290316d..52dd0648b1 100644 --- a/meta/recipes-graphics/pango/pango.inc +++ b/meta/recipes-graphics/pango/pango.inc @@ -49,7 +49,7 @@ if ! [ -e $D${sysconfdir}/pango ] ; then fi if [ "x$D" != "x" ]; then - ${@qemu_run_binary(d, '$D','/usr/bin/pango-querymodules')} \ + ${@qemu_run_binary(d, '$D','${bindir}/${MLPREFIX}pango-querymodules')} \ $D${libdir}/pango/${LIBV}/modules/*.so \ > $D${sysconfdir}/pango/${MLPREFIX}pango.modules 2>/dev/null |