diff options
author | Jamie Lenehan <lenehan@twibble.org> | 2006-11-21 23:31:14 +0000 |
---|---|---|
committer | Jamie Lenehan <lenehan@twibble.org> | 2006-11-21 23:31:14 +0000 |
commit | b201fc63537726817bebb816b35742f22feb7e8a (patch) | |
tree | 71c3dbf3b8d2d10d5b10e6c092da2d28f8ecdc27 /packages/addons | |
parent | d407f7c94e04244dd15c649ddc8f70fc1cd93e5d (diff) |
devshell: Fix so that it actually deploys the devshell script. The task
being added gets "do_" appended to it, so we need to add "deploy" (not
"do_deploy"). Also with just to "after do_install" it never gets called
(perhaps added too late?) so also add a "before do_package". Closes #1561.
Diffstat (limited to 'packages/addons')
-rw-r--r-- | packages/addons/devshell.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/addons/devshell.bb b/packages/addons/devshell.bb index 986e17a5f9..cf10afeefe 100644 --- a/packages/addons/devshell.bb +++ b/packages/addons/devshell.bb @@ -1,6 +1,6 @@ DESCRIPTION = "Runs a shell in an environment as emitted by BitBake to execute tasks" LICENSE = "GPL" -PR = "r2" +PR = "r3" inherit autotools pkgconfig @@ -72,4 +72,4 @@ do_deploy() { install -m 755 $shellfile ${DEPLOY_DIR}/addons } -addtask do_deploy after do_install +addtask deploy after do_install before do_package |