diff options
author | Peter A. Bigot <pab@pabigot.com> | 2014-11-10 15:12:59 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-11-20 14:08:09 +0000 |
commit | 419a37e09565a820fdeb2d49104cc27f6720af5a (patch) | |
tree | 57bd0615ba42839467455dc227ca4126b4123d8d /meta/recipes-connectivity | |
parent | fd338cff2eef51bcfd87fb7a3840bfb08a057204 (diff) | |
download | poky-419a37e09565a820fdeb2d49104cc27f6720af5a.tar.gz |
bluez5: fix QA error from configure option
The systemdunitdir option was split into systemdsystemunitdir and
systemduserunitdir before bluez5 was ever released, so this produced a
QA error and was ignored. There appears to be no reason to override the
inferred default, so replace it with an explicit --enable-systemd.
(From OE-Core rev: 8c9c08112d7b3bde48fb4dd5e15429948aca0dd6)
Signed-off-by: Peter A. Bigot <pab@pabigot.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity')
-rw-r--r-- | meta/recipes-connectivity/bluez5/bluez5.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-connectivity/bluez5/bluez5.inc b/meta/recipes-connectivity/bluez5/bluez5.inc index c3dd946517..28c014fd66 100644 --- a/meta/recipes-connectivity/bluez5/bluez5.inc +++ b/meta/recipes-connectivity/bluez5/bluez5.inc | |||
@@ -26,7 +26,7 @@ EXTRA_OECONF = "\ | |||
26 | --disable-cups \ | 26 | --disable-cups \ |
27 | --enable-test \ | 27 | --enable-test \ |
28 | --enable-datafiles \ | 28 | --enable-datafiles \ |
29 | ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', '--with-systemdunitdir=${systemd_unitdir}/system/', '--disable-systemd', d)} \ | 29 | ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', '--enable-systemd', '--disable-systemd', d)} \ |
30 | --enable-library \ | 30 | --enable-library \ |
31 | " | 31 | " |
32 | 32 | ||