diff options
author | Maxin B. John <maxin.john@enea.com> | 2014-05-05 22:42:22 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-05-29 13:42:23 +0100 |
commit | 7bb4692eada0938d9b13dccb86485e5be6faa0a0 (patch) | |
tree | d6328ac3fa51d6ba76f15e21fb695d7b707f8a09 /meta/recipes-extended/bzip2/bzip2_1.0.6.bb | |
parent | dea4a69cfcf5c1653ecf9b8f68210a239a0f426b (diff) | |
download | poky-7bb4692eada0938d9b13dccb86485e5be6faa0a0.tar.gz |
bzip2: fix ptest execution failure
This patch fixes the bzip2 ptest execution failure:
root@qemux86:/usr/lib/bzip2/ptest# ./run-ptest
make: *** No rule to make target 'runtest'.
(This is also applicable for daisy branch)
(From OE-Core rev: a8157ba1682c650962150f941b2db775156bbde6)
(From OE-Core rev: 0927dbf7183574fc17f3684fff39a74385b971a5)
Signed-off-by: Maxin B. John <maxin.john@enea.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/bzip2/bzip2_1.0.6.bb')
-rw-r--r-- | meta/recipes-extended/bzip2/bzip2_1.0.6.bb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-extended/bzip2/bzip2_1.0.6.bb b/meta/recipes-extended/bzip2/bzip2_1.0.6.bb index e9d745d763..9dd9e6a1f9 100644 --- a/meta/recipes-extended/bzip2/bzip2_1.0.6.bb +++ b/meta/recipes-extended/bzip2/bzip2_1.0.6.bb | |||
@@ -11,7 +11,7 @@ PR = "r5" | |||
11 | SRC_URI = "http://www.bzip.org/${PV}/${BPN}-${PV}.tar.gz \ | 11 | SRC_URI = "http://www.bzip.org/${PV}/${BPN}-${PV}.tar.gz \ |
12 | file://configure.ac \ | 12 | file://configure.ac \ |
13 | file://run-ptest \ | 13 | file://run-ptest \ |
14 | file://Makefile.am" | 14 | file://Makefile.am" |
15 | 15 | ||
16 | SRC_URI[md5sum] = "00b516f4704d4a7cb50a1d97e6e8e15b" | 16 | SRC_URI[md5sum] = "00b516f4704d4a7cb50a1d97e6e8e15b" |
17 | SRC_URI[sha256sum] = "a2848f34fcd5d6cf47def00461fcb528a0484d8edef8208d6d2e2909dc61d9cd" | 17 | SRC_URI[sha256sum] = "a2848f34fcd5d6cf47def00461fcb528a0484d8edef8208d6d2e2909dc61d9cd" |
@@ -35,6 +35,7 @@ do_extraunpack () { | |||
35 | addtask extraunpack after do_unpack before do_patch | 35 | addtask extraunpack after do_unpack before do_patch |
36 | 36 | ||
37 | do_install_ptest () { | 37 | do_install_ptest () { |
38 | cp -f ${B}/Makefile ${D}${PTEST_PATH}/Makefile | ||
38 | sed -i -e "s|^Makefile:|_Makefile:|" ${D}${PTEST_PATH}/Makefile | 39 | sed -i -e "s|^Makefile:|_Makefile:|" ${D}${PTEST_PATH}/Makefile |
39 | } | 40 | } |
40 | 41 | ||