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:41 +0000 |
commit | aaa2a70f7f1b8a299f31626d61d7ea27f29fb9e2 (patch) | |
tree | 55801fc5e8d6b132d478ac8497ac563b018b8160 /meta/classes/gconf.bbclass | |
parent | 5680bf11f2e5877782d0101d5b8a5ed24d1ddbce (diff) | |
download | openembedded-core-aaa2a70f7f1b8a299f31626d61d7ea27f29fb9e2.tar.gz openembedded-core-aaa2a70f7f1b8a299f31626d61d7ea27f29fb9e2.tar.bz2 openembedded-core-aaa2a70f7f1b8a299f31626d61d7ea27f29fb9e2.tar.xz openembedded-core-aaa2a70f7f1b8a299f31626d61d7ea27f29fb9e2.zip |
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.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/gconf.bbclass')
-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 71926b781..f16454778 100644 --- a/meta/classes/gconf.bbclass +++ b/meta/classes/gconf.bbclass @@ -3,6 +3,7 @@ DEPENDS += "gconf gconf-native" # This is referenced by the gconf m4 macros and would default to the value hardcoded # into gconf at compile time otherwise export GCONF_SCHEMA_INSTALL_SOURCE = "xml:merged:${STAGING_DIR_NATIVE}${sysconfdir}/gconf/gconf.xml.defaults" +export GCONF_BACKEND_DIR = "${STAGING_LIBDIR_NATIVE}/GConf/2" gconf_postinst() { if [ "x$D" != "x" ]; then |