diff options
author | Jackie Huang <jackie.huang@windriver.com> | 2017-11-28 15:01:09 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-12-10 22:45:18 +0000 |
commit | db7df005a3259eaa9c0ec652c2eef5a57badfe31 (patch) | |
tree | 5c6fda00ec7ce285a2323a121e81f15ef5ed9263 | |
parent | f295c1e944f5b9b972930ccac577206fbeb50298 (diff) | |
download | poky-db7df005a3259eaa9c0ec652c2eef5a57badfe31.tar.gz |
qemu: fix the makefile for ptest
It always fail to check the file generated by configure
when running ptest on the target since it's cross-compiling,
so remove the check from the Makefile for ptest.
(From OE-Core rev: 839f5ed91a8061506b1f71661ec4006783146672)
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-devtools/qemu/qemu_2.10.1.bb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/recipes-devtools/qemu/qemu_2.10.1.bb b/meta/recipes-devtools/qemu/qemu_2.10.1.bb index 8e3ca3c949..5ac221c9ed 100644 --- a/meta/recipes-devtools/qemu/qemu_2.10.1.bb +++ b/meta/recipes-devtools/qemu/qemu_2.10.1.bb | |||
@@ -55,5 +55,8 @@ do_install_ptest() { | |||
55 | find ${D}${PTEST_PATH}/tests -type f -name "*.[Sshcod]" | xargs -i rm -rf {} | 55 | find ${D}${PTEST_PATH}/tests -type f -name "*.[Sshcod]" | xargs -i rm -rf {} |
56 | 56 | ||
57 | cp ${S}/tests/Makefile.include ${D}${PTEST_PATH}/tests | 57 | cp ${S}/tests/Makefile.include ${D}${PTEST_PATH}/tests |
58 | # Don't check the file genreated by configure | ||
59 | sed -i -e '/wildcard config-host.mak/d' \ | ||
60 | -e '$ {/endif/d}' ${D}${PTEST_PATH}/tests/Makefile.include | ||
58 | } | 61 | } |
59 | 62 | ||