diff options
-rw-r--r-- | meta/classes/gconf.bbclass | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/meta/classes/gconf.bbclass b/meta/classes/gconf.bbclass index a966c268bb..fb9f701b37 100644 --- a/meta/classes/gconf.bbclass +++ b/meta/classes/gconf.bbclass | |||
@@ -1,10 +1,18 @@ | |||
1 | DEPENDS += "gconf gconf-native" | 1 | DEPENDS += "gconf gconf-native" |
2 | 2 | ||
3 | # This is referenced by the gconf m4 macros and would default to the value hardcoded | 3 | # These are for when gconftool is used natively and the prefix isn't necessarily |
4 | # into gconf at compile time otherwise | 4 | # the sysroot. TODO: replicate the postinst logic for -native packages going |
5 | # into sysroot as they won't be running their own install-time schema | ||
6 | # registration (disabled below) nor the postinst script (as they don't happen). | ||
5 | export GCONF_SCHEMA_INSTALL_SOURCE = "xml:merged:${STAGING_DIR_NATIVE}${sysconfdir}/gconf/gconf.xml.defaults" | 7 | 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" | 8 | export GCONF_BACKEND_DIR = "${STAGING_LIBDIR_NATIVE}/GConf/2" |
7 | 9 | ||
10 | # Disable install-time schema registration as we're a packaging system so this | ||
11 | # happens in the postinst script, not at install time. Set both the configure | ||
12 | # script option and the traditional envionment variable just to make sure. | ||
13 | EXTRA_OECONF += "--disable-schemas-install" | ||
14 | export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL = "1" | ||
15 | |||
8 | gconf_postinst() { | 16 | gconf_postinst() { |
9 | if [ "x$D" != "x" ]; then | 17 | if [ "x$D" != "x" ]; then |
10 | exit 1 | 18 | exit 1 |