devshell: Fix so that it actually deploys the devshell script. The task
authorJamie Lenehan <lenehan@twibble.org>
Tue, 21 Nov 2006 23:31:14 +0000 (23:31 +0000)
committerJamie Lenehan <lenehan@twibble.org>
Tue, 21 Nov 2006 23:31:14 +0000 (23:31 +0000)
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.

packages/addons/devshell.bb

index 986e17a..cf10afe 100644 (file)
@@ -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