diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-12-18 17:12:23 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-12-20 12:26:26 +0000 |
commit | f857b62b8ac78b49b1cbb98c021ad19eb6d04508 (patch) | |
tree | 5de5be21c4bc57fd4381ee32ef5d6db6e74c651d /meta/classes/ptest.bbclass | |
parent | 64bb800c73de011376af98066b1845f73e2355a2 (diff) | |
download | poky-f857b62b8ac78b49b1cbb98c021ad19eb6d04508.tar.gz |
ptest: Fix dependency/ordering issue
We've seen occasional issues on the autobuilder where files appear during
do_populate_sysroot and this is due to the ptest installation happening
in parallel. This fixes the order to be deterministic.
(From OE-Core rev: 0ed1641d870f4bb5735aeeb7bd29cc196e61b7cc)
(From OE-Core rev: 96aa9bf8880088c9a710c86cc8ee106138152a98)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/ptest.bbclass')
-rw-r--r-- | meta/classes/ptest.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/ptest.bbclass b/meta/classes/ptest.bbclass index 06dddf7908..98c913922d 100644 --- a/meta/classes/ptest.bbclass +++ b/meta/classes/ptest.bbclass | |||
@@ -52,7 +52,7 @@ do_install_ptest_base[cleandirs] = "${D}${PTEST_PATH}" | |||
52 | 52 | ||
53 | addtask configure_ptest_base after do_configure before do_compile | 53 | addtask configure_ptest_base after do_configure before do_compile |
54 | addtask compile_ptest_base after do_compile before do_install | 54 | addtask compile_ptest_base after do_compile before do_install |
55 | addtask install_ptest_base after do_install before do_package | 55 | addtask install_ptest_base after do_install before do_package do_populate_sysroot |
56 | 56 | ||
57 | python () { | 57 | python () { |
58 | if not bb.data.inherits_class('native', d) and not bb.data.inherits_class('cross', d): | 58 | if not bb.data.inherits_class('native', d) and not bb.data.inherits_class('cross', d): |