diff options
author | Anuj Mittal <anuj.mittal@intel.com> | 2018-02-22 17:11:14 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-03-03 17:08:27 +0000 |
commit | f4fbdc8cc19be843f733701fc6fa2ac8cf5c3699 (patch) | |
tree | 9fb82a495015286b532dbee9f90eb30db650cfb0 | |
parent | da8c86e75f5c70be6c18aa278c7b4dcfbd3aec49 (diff) | |
download | openembedded-core-f4fbdc8cc19be843f733701fc6fa2ac8cf5c3699.tar.gz openembedded-core-f4fbdc8cc19be843f733701fc6fa2ac8cf5c3699.tar.bz2 openembedded-core-f4fbdc8cc19be843f733701fc6fa2ac8cf5c3699.zip |
kbd: build tests only when ptest is enabled
Also include the libcheck dependency only when tests are to be built.
Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
-rw-r--r-- | meta/recipes-core/kbd/kbd_2.0.4.bb | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/meta/recipes-core/kbd/kbd_2.0.4.bb b/meta/recipes-core/kbd/kbd_2.0.4.bb index 5937cb8145..80808af135 100644 --- a/meta/recipes-core/kbd/kbd_2.0.4.bb +++ b/meta/recipes-core/kbd/kbd_2.0.4.bb @@ -3,7 +3,6 @@ HOMEPAGE = "http://www.kbd-project.org/" # everything minus console-fonts is GPLv2+ LICENSE = "GPLv2+" LIC_FILES_CHKSUM = "file://COPYING;md5=a5fcc36121d93e1f69d96a313078c8b5" -DEPENDS = "libcheck" inherit autotools gettext ptest pkgconfig @@ -19,8 +18,12 @@ SRC_URI = "${KERNELORG_MIRROR}/linux/utils/${BPN}/${BP}.tar.xz \ SRC_URI[md5sum] = "c1635a5a83b63aca7f97a3eab39ebaa6" SRC_URI[sha256sum] = "5fd90af6beb225a9bb9b9fb414c090fba53c9a55793e172f508cd43652e59a88" -PACKAGECONFIG ?= "${@bb.utils.filter('DISTRO_FEATURES', 'pam', d)}" +PACKAGECONFIG ?= "${@bb.utils.filter('DISTRO_FEATURES', 'pam', d)} \ + ${@bb.utils.contains('PTEST_ENABLED', '1', 'tests','', d)} \ + " + PACKAGECONFIG[pam] = "--enable-vlock, --disable-vlock, libpam," +PACKAGECONFIG[tests] = "--enable-tests, --disable-tests, libcheck" do_compile_ptest() { oe_runmake -C ${B}/tests dumpkeys-fulltable alt-is-meta |