[oe-commits] [openembedded-core] 61/68: dbus: do not use systemctl from host for configure

git at git.openembedded.org git at git.openembedded.org
Thu Feb 23 20:51:32 UTC 2017


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master
in repository openembedded-core.

commit e9471f8da3946439141ccdd8284200aa614df46c
Author: Andy Kling <andreas.kling at peiker-cee.de>
AuthorDate: Wed Feb 15 07:15:16 2017 +0100

    dbus: do not use systemctl from host for configure
    
      configure.ac from dbus uses $PATH to get the location of systemctl.
      If it is not found /usr/bin/systemctl is used. It is possible to
      override the location by passing SYSTEMCTL=[value] to configure.
      The value is used to replace @SYSTEMCTL@ in systemd-user/dbus.socket.in.
      dbus.socket sets the environment variable DBUS_SESSION_BUS_ADDRESS
      using systemctl.
    
      dbus does not depend on systemd-systemctl-native, so location from
      host installation or the default value gets used. Adding
      systemd-systemctl to the build would give path from sysroot.
    
      Forcing SYSTEMCTL=${base_bindir}/systemctl for target gives the
      correct path there and the environment variable is set after a user
      session was opened.
    
    [YOCTO #11002]
    
    Signed-off-by: Andy Kling <andreas.kling at peiker-cee.de>
    Signed-off-by: Ross Burton <ross.burton at intel.com>
---
 meta/recipes-core/dbus/dbus_1.10.14.bb | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meta/recipes-core/dbus/dbus_1.10.14.bb b/meta/recipes-core/dbus/dbus_1.10.14.bb
index f50aff8..d745602 100644
--- a/meta/recipes-core/dbus/dbus_1.10.14.bb
+++ b/meta/recipes-core/dbus/dbus_1.10.14.bb
@@ -97,6 +97,7 @@ EXTRA_OECONF = "--disable-tests \
                 --disable-libaudit \
                 "
 
+EXTRA_OECONF_append_class-target = " SYSTEMCTL=${base_bindir}/systemctl"
 EXTRA_OECONF_append_class-native = " --disable-selinux"
 
 PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'systemd', '', d)} \

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list