aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChang Rebecca Swee Fun <rebecca.swee.fun.chang@intel.com>2017-05-30 08:58:08 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-06-05 17:59:40 +0100
commiteb8a1cdf5106d119f77db76f9a690826af9fcda3 (patch)
tree3c2826f2acd947def340d400f379c340dc424fe1
parentddbbefdd124604d10bd47dd0266b55a764fcc0ab (diff)
downloadopenembedded-core-contrib-eb8a1cdf5106d119f77db76f9a690826af9fcda3.tar.gz
devshell.bbclass: ensure toolchains available for do_devshell
Toolchains are required to be prepopulated in sysroot before entering devshell. [YOCTO #11464] Signed-off-by: Chang Rebecca Swee Fun <rebecca.swee.fun.chang@intel.com>
-rw-r--r--meta/classes/devshell.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/devshell.bbclass b/meta/classes/devshell.bbclass
index 4de7ea6fce..9fbe70e006 100644
--- a/meta/classes/devshell.bbclass
+++ b/meta/classes/devshell.bbclass
@@ -15,7 +15,7 @@ python do_devshell () {
oe_terminal(d.getVar('DEVSHELL'), 'OpenEmbedded Developer Shell', d)
}
-addtask devshell after do_patch
+addtask devshell after do_patch do_prepare_recipe_sysroot
# The directory that the terminal starts in
DEVSHELL_STARTDIR ?= "${S}"