diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2009-11-11 22:09:48 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2009-11-11 22:10:28 +0000 |
commit | 98c4cef80ccac7e109e8479ac3902b6ef24ff16f (patch) | |
tree | c9c452b240331d14e301a5c19108d1a72a93080c | |
parent | 5793e93f71db384b6671d4293614b71334161e52 (diff) |
zaurus-updater: Fix task order for packaged-staging. PARALLEL_MAKE is pointless since we don't call make
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
-rw-r--r-- | recipes/zaurus-utils/zaurus-updater.bb | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/recipes/zaurus-utils/zaurus-updater.bb b/recipes/zaurus-utils/zaurus-updater.bb index ab32d7fe29..62707a994d 100644 --- a/recipes/zaurus-utils/zaurus-updater.bb +++ b/recipes/zaurus-utils/zaurus-updater.bb @@ -34,5 +34,6 @@ do_deploy() { esac } -addtask deploy before do_build after do_compile -PARALLEL_MAKE = "" +# package_stagefile_shell need to run before populate_staging for packaged-staging +addtask deploy before do_populate_staging after do_compile + |