aboutsummaryrefslogtreecommitdiffstats
path: root/classes
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2011-08-02 19:34:34 +0100
committerPaul Eggleton <paul.eggleton@linux.intel.com>2011-08-02 19:34:34 +0100
commit60f86212e16ba8f80ed930f8c65d7dc9c3c550cd (patch)
tree46c1635c1ffd2ad8786e9e84dd4d068fd26ab8ee /classes
parent55b28433182e8c324d86b6aab1b6a053da7512a6 (diff)
downloadmeta-opie-60f86212e16ba8f80ed930f8c65d7dc9c3c550cd.tar.gz
opie.bbclass: fix install race
do_opie_install apparently needs to occur after do_install, or it doesn't install anything. Without this, they occur in parallel and so sometimes it works and other times it doesn't. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Diffstat (limited to 'classes')
-rw-r--r--classes/opie.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/opie.bbclass b/classes/opie.bbclass
index 833ea4d..10dd177 100644
--- a/classes/opie.bbclass
+++ b/classes/opie.bbclass
@@ -102,4 +102,4 @@ python opie_do_opie_install() {
}
EXPORT_FUNCTIONS do_opie_install
-addtask opie_install after do_compile before do_package
+addtask opie_install after do_install before do_populate_sysroot do_package