diff options
author | Alexander Kanavin <alex.kanavin@gmail.com> | 2019-10-10 13:18:43 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-10-15 14:16:10 +0100 |
commit | a3df097fa48fff07d31e083d748a391324a8fdff (patch) | |
tree | b3f79477463fc5bba892376721312aba62081185 /meta/recipes-support | |
parent | 7bd7af037f89bcf4145e5e8ee4683a3ce5dc33b0 (diff) | |
download | poky-a3df097fa48fff07d31e083d748a391324a8fdff.tar.gz |
libcheck: split /usr/bin/checkmk into its own package
This allows not pulling in gawk, which is gplv3 licensed when
only the libcheck library itself is needed. checkmk is a
development tool that writes out a C boilerplate for tests.
(From OE-Core rev: 61adf39b552e9a94226c998c81e6a411ccaf9476)
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support')
-rw-r--r-- | meta/recipes-support/libcheck/libcheck_0.12.0.bb | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/meta/recipes-support/libcheck/libcheck_0.12.0.bb b/meta/recipes-support/libcheck/libcheck_0.12.0.bb index 94b0dc1bbd..25ac2c4b26 100644 --- a/meta/recipes-support/libcheck/libcheck_0.12.0.bb +++ b/meta/recipes-support/libcheck/libcheck_0.12.0.bb | |||
@@ -18,7 +18,12 @@ inherit autotools pkgconfig texinfo | |||
18 | CACHED_CONFIGUREVARS += "ac_cv_path_AWK_PATH=${bindir}/gawk" | 18 | CACHED_CONFIGUREVARS += "ac_cv_path_AWK_PATH=${bindir}/gawk" |
19 | 19 | ||
20 | RREPLACES_${PN} = "check (<= 0.9.5)" | 20 | RREPLACES_${PN} = "check (<= 0.9.5)" |
21 | RDEPENDS_${PN} += "gawk" | ||
22 | RDEPENDS_${PN}_class-native = "" | ||
23 | 21 | ||
24 | BBCLASSEXTEND = "native nativesdk" | 22 | BBCLASSEXTEND = "native nativesdk" |
23 | |||
24 | PACKAGES =+ "checkmk" | ||
25 | |||
26 | FILES_checkmk = "${bindir}/checkmk" | ||
27 | |||
28 | RDEPENDS_checkmk = "gawk" | ||
29 | |||