aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2013-12-18 17:12:23 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-12-20 12:25:21 +0000
commit96aa9bf8880088c9a710c86cc8ee106138152a98 (patch)
tree640b9436eea9700010ac08528df7b9b3d61fb736
parent3aa30ca04752c6366a81db6ff99209fa0b46861c (diff)
downloadopenembedded-core-contrib-96aa9bf8880088c9a710c86cc8ee106138152a98.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) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/classes/ptest.bbclass2
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}"
addtask configure_ptest_base after do_configure before do_compile
addtask compile_ptest_base after do_compile before do_install
-addtask install_ptest_base after do_install before do_package
+addtask install_ptest_base after do_install before do_package do_populate_sysroot
python () {
if not bb.data.inherits_class('native', d) and not bb.data.inherits_class('cross', d):