diff options
author | Paulo Neves <ptsneves@gmail.com> | 2022-06-14 17:11:05 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-07-01 12:37:52 +0100 |
commit | 73f9326d2a7c6a60c805da6e2e7ffae4071c1062 (patch) | |
tree | 2e754864a8301c7bcb2bb3919822bebe9df339b5 /meta/recipes-support/libcheck | |
parent | eb997a68010c55d0aeacd6b5f0d026461ae716a2 (diff) | |
download | poky-73f9326d2a7c6a60c805da6e2e7ffae4071c1062.tar.gz |
libcheck: Fix too long shebang for native case.
It requires a shebang wrapper due to the fact that awk interpreter
has an argument.
(From OE-Core rev: 3ced538ef2b6d509bec5a619837382de574c710e)
Signed-off-by: Paulo Neves <ptsneves@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/libcheck')
-rw-r--r-- | meta/recipes-support/libcheck/libcheck_0.15.2.bb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/recipes-support/libcheck/libcheck_0.15.2.bb b/meta/recipes-support/libcheck/libcheck_0.15.2.bb index 188d689cc3..1393aa2a1c 100644 --- a/meta/recipes-support/libcheck/libcheck_0.15.2.bb +++ b/meta/recipes-support/libcheck/libcheck_0.15.2.bb | |||
@@ -23,6 +23,9 @@ CACHED_CONFIGUREVARS += "ac_cv_path_AWK_PATH=${bindir}/gawk" | |||
23 | 23 | ||
24 | RREPLACES:${PN} = "check (<= 0.9.5)" | 24 | RREPLACES:${PN} = "check (<= 0.9.5)" |
25 | 25 | ||
26 | do_install:append:class-native() { | ||
27 | create_cmdline_shebang_wrapper ${D}${bindir}/checkmk | ||
28 | } | ||
26 | BBCLASSEXTEND = "native nativesdk" | 29 | BBCLASSEXTEND = "native nativesdk" |
27 | 30 | ||
28 | PACKAGES =+ "checkmk" | 31 | PACKAGES =+ "checkmk" |