diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-11-23 15:05:39 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-11-23 15:10:48 +0000 |
commit | 46033c3cd49214f98df3715fe597e95012b46602 (patch) | |
tree | 2e64a5ba70f69971dad3091a1bedaf4c482b5543 /meta/classes | |
parent | 54217ee467f239f244a8697c5e12c0fa8212f4c2 (diff) | |
download | poky-46033c3cd49214f98df3715fe597e95012b46602.tar.gz |
gconf: Ensure the correct backend directory is used
Without these changes, gconf will use the hardcoded backend directory meaning
we can see errors when building if the binary was relocated.
(From OE-Core rev: aaa2a70f7f1b8a299f31626d61d7ea27f29fb9e2)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/gconf.bbclass | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/classes/gconf.bbclass b/meta/classes/gconf.bbclass index 71926b7818..f164547782 100644 --- a/meta/classes/gconf.bbclass +++ b/meta/classes/gconf.bbclass | |||
@@ -3,6 +3,7 @@ DEPENDS += "gconf gconf-native" | |||
3 | # This is referenced by the gconf m4 macros and would default to the value hardcoded | 3 | # This is referenced by the gconf m4 macros and would default to the value hardcoded |
4 | # into gconf at compile time otherwise | 4 | # into gconf at compile time otherwise |
5 | export GCONF_SCHEMA_INSTALL_SOURCE = "xml:merged:${STAGING_DIR_NATIVE}${sysconfdir}/gconf/gconf.xml.defaults" | 5 | export GCONF_SCHEMA_INSTALL_SOURCE = "xml:merged:${STAGING_DIR_NATIVE}${sysconfdir}/gconf/gconf.xml.defaults" |
6 | export GCONF_BACKEND_DIR = "${STAGING_LIBDIR_NATIVE}/GConf/2" | ||
6 | 7 | ||
7 | gconf_postinst() { | 8 | gconf_postinst() { |
8 | if [ "x$D" != "x" ]; then | 9 | if [ "x$D" != "x" ]; then |