diff options
author | Marc Ferland <ferlandm@amotus.ca> | 2017-04-25 10:48:38 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-05-16 14:08:16 +0100 |
commit | 49d27787d48bab371dbacaf44419fc66f697628a (patch) | |
tree | c3641c8d4c4e6663959df97afd00a5fad4206635 | |
parent | 3eb9a546c0eae4a5ea8526445ba0bf1e7ed5517e (diff) | |
download | openembedded-core-49d27787d48bab371dbacaf44419fc66f697628a.tar.gz openembedded-core-49d27787d48bab371dbacaf44419fc66f697628a.tar.bz2 openembedded-core-49d27787d48bab371dbacaf44419fc66f697628a.zip |
bluez5: add PACKAGECONFIG option for cups
Signed-off-by: Marc Ferland <ferlandm@amotus.ca>
Signed-off-by: Ross Burton <ross.burton@intel.com>
-rw-r--r-- | meta/recipes-connectivity/bluez5/bluez5.inc | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/meta/recipes-connectivity/bluez5/bluez5.inc b/meta/recipes-connectivity/bluez5/bluez5.inc index 71a50161bd..c8a240fc45 100644 --- a/meta/recipes-connectivity/bluez5/bluez5.inc +++ b/meta/recipes-connectivity/bluez5/bluez5.inc @@ -18,6 +18,7 @@ PACKAGECONFIG[readline] = "--enable-client,--disable-client,readline," PACKAGECONFIG[testing] = "--enable-testing,--disable-testing" PACKAGECONFIG[midi] = "--enable-midi,--disable-midi,alsa-lib" PACKAGECONFIG[systemd] = "--enable-systemd,--disable-systemd" +PACKAGECONFIG[cups] = "--enable-cups,--disable-cups,,cups" SRC_URI = "\ ${KERNELORG_MIRROR}/linux/bluetooth/bluez-${PV}.tar.xz \ @@ -34,7 +35,6 @@ inherit autotools pkgconfig systemd update-rc.d distro_features_check ptest EXTRA_OECONF = "\ --enable-tools \ --enable-deprecated \ - --disable-cups \ --enable-test \ --enable-datafiles \ --enable-library \ @@ -82,7 +82,11 @@ do_install_append() { PACKAGES =+ "${PN}-testtools ${PN}-obex ${PN}-noinst-tools" -FILES_${PN} += "${libdir}/bluetooth/plugins/*.so ${systemd_unitdir}/ ${datadir}/dbus-1" +FILES_${PN} += " \ + ${libdir}/bluetooth/plugins/*.so \ + ${systemd_unitdir}/ ${datadir}/dbus-1 \ + ${libdir}/cups \ +" FILES_${PN}-dev += "\ ${libdir}/bluetooth/plugins/*.la \ " |