diff options
author | Fathi Boudra <fathi.boudra@linaro.org> | 2017-03-21 00:23:25 +0000 |
---|---|---|
committer | Denys Dmytriyenko <denys@ti.com> | 2017-03-21 21:20:51 -0400 |
commit | f78cda06dc56d5af9fe2a35fd66dd5cf37946df7 (patch) | |
tree | 779b07106aa6231fcb0cb366a9172dd093e1a098 /recipes-kernel/kselftests | |
parent | feb49c1bafe80af8c3d217975f2811d64d6bce4d (diff) | |
download | meta-ti-f78cda06dc56d5af9fe2a35fd66dd5cf37946df7.tar.gz |
kselftests: fix up run_kselftest.sh due to spurious lines
run_kselftests.sh contains randomly spurious lines starting by "make[1]:".
The way the script is generated is most likely broken.
Until, we've got a proper fix, get rid of the lines after the generated
script is installed.
Signed-off-by: Fathi Boudra <fathi.boudra@linaro.org>
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
Diffstat (limited to 'recipes-kernel/kselftests')
-rw-r--r-- | recipes-kernel/kselftests/kselftests_4.9.bb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/recipes-kernel/kselftests/kselftests_4.9.bb b/recipes-kernel/kselftests/kselftests_4.9.bb index 39188b01..9d3f1d73 100644 --- a/recipes-kernel/kselftests/kselftests_4.9.bb +++ b/recipes-kernel/kselftests/kselftests_4.9.bb | |||
@@ -72,6 +72,8 @@ do_compile () { | |||
72 | do_install () { | 72 | do_install () { |
73 | oe_runmake install | 73 | oe_runmake install |
74 | chown -R root:root ${D} | 74 | chown -R root:root ${D} |
75 | # fixup run_kselftest.sh due to spurious lines starting by "make[1]:" | ||
76 | sed -i '/^make/d' ${D}${bindir}/kselftests/run_kselftest.sh | ||
75 | } | 77 | } |
76 | 78 | ||
77 | PACKAGE_BEFORE_PN = " \ | 79 | PACKAGE_BEFORE_PN = " \ |