diff options
author | Ross Burton <ross.burton@intel.com> | 2015-01-19 14:57:12 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-01-23 11:35:24 +0000 |
commit | 964ab1abf6faceb513ceb8618a74726a5086c319 (patch) | |
tree | 65168bc42b9105f92f530e7e3b3379aa2606bc44 /meta/recipes-support | |
parent | 5633b4e12560eab4c748e1fdf8216c3db310b34f (diff) | |
download | openembedded-core-964ab1abf6faceb513ceb8618a74726a5086c319.tar.gz openembedded-core-964ab1abf6faceb513ceb8618a74726a5086c319.tar.bz2 openembedded-core-964ab1abf6faceb513ceb8618a74726a5086c319.zip |
at-spi2-core: pass correct path to dbus-daemon
at-spi2-core tries to find the dbus-daemon binary and hard-codes this path in a
script. The first dbus-daemon it finds is the one in the target sysroot, so
explicitly pass the correct path.
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/recipes-support')
-rw-r--r-- | meta/recipes-support/atk/at-spi2-core_2.14.1.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-support/atk/at-spi2-core_2.14.1.bb b/meta/recipes-support/atk/at-spi2-core_2.14.1.bb index 586516604a..8d01124d01 100644 --- a/meta/recipes-support/atk/at-spi2-core_2.14.1.bb +++ b/meta/recipes-support/atk/at-spi2-core_2.14.1.bb @@ -13,6 +13,6 @@ DEPENDS = "dbus glib-2.0 virtual/libx11 libxi libxtst intltool-native" inherit autotools gtk-doc pkgconfig -EXTRA_OECONF = "--disable-introspection --disable-xevie" +EXTRA_OECONF = "--disable-introspection --disable-xevie --with-dbus-daemondir=${bindir}" FILES_${PN} += "${datadir}/dbus-1/services/*.service" |