diff options
author | Ross Burton <ross.burton@intel.com> | 2013-03-07 12:56:45 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-03-15 01:52:53 +0000 |
commit | 87fe717009fb2bcd8e5dbdf0236fe715effca89f (patch) | |
tree | f6ef72d5ba08aa77e31f68f5b3da0b75e5f4881e /meta/recipes-connectivity/connman | |
parent | d9349e6e28cef107ad8bd00767ceba4d8aa464dd (diff) | |
download | openembedded-core-87fe717009fb2bcd8e5dbdf0236fe715effca89f.tar.gz openembedded-core-87fe717009fb2bcd8e5dbdf0236fe715effca89f.tar.bz2 openembedded-core-87fe717009fb2bcd8e5dbdf0236fe715effca89f.zip |
connman: explicitly disable systemd if we don't want it enabled
Otherwise configure will use pkg-config and may find systemd, even though we
don't want it.
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta/recipes-connectivity/connman')
-rw-r--r-- | meta/recipes-connectivity/connman/connman.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-connectivity/connman/connman.inc b/meta/recipes-connectivity/connman/connman.inc index 04b21f7259..96ebc551b8 100644 --- a/meta/recipes-connectivity/connman/connman.inc +++ b/meta/recipes-connectivity/connman/connman.inc @@ -40,7 +40,7 @@ EXTRA_OECONF += "\ --disable-polkit \ --enable-client \ --enable-fake \ - ${@base_contains('DISTRO_FEATURES', 'systemd', '--with-systemdunitdir=${systemd_unitdir}/system/', '', d)} \ + ${@base_contains('DISTRO_FEATURES', 'systemd', '--with-systemdunitdir=${systemd_unitdir}/system/', '--with-systemdunitdir=', d)} \ " INITSCRIPT_NAME = "connman" |