From 60f86212e16ba8f80ed930f8c65d7dc9c3c550cd Mon Sep 17 00:00:00 2001 From: Paul Eggleton Date: Tue, 2 Aug 2011 19:34:34 +0100 Subject: 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 --- classes/opie.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'classes') 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 -- cgit 1.2.3-korg