From: Jamie Lenehan Date: Tue, 21 Nov 2006 23:31:14 +0000 (+0000) Subject: devshell: Fix so that it actually deploys the devshell script. The task X-Git-Tag: Release-2010-05/1~9453^2~346 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b201fc63537726817bebb816b35742f22feb7e8a;p=openembedded.git 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. --- 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