summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard@openedhand.com>2007-09-17 08:14:16 +0000
committerRichard Purdie <richard@openedhand.com>2007-09-17 08:14:16 +0000
commit51d9c76e954bef233c66fba328ffc13a496857fc (patch)
treead2e79c2d85c188f2ffd34dfb3aea4d62b095a0e
parent2129b596fa06b89ba6892b9f8b9d4412044acfc9 (diff)
downloadpoky-51d9c76e954bef233c66fba328ffc13a496857fc.tar.gz
devshell.bbclass: Sync with OE since this no longer works at properly without this change
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2738 311d38ba-8fff-0310-9ca6-ca027cbcb966
-rw-r--r--meta/classes/devshell.bbclass9
1 files changed, 7 insertions, 2 deletions
diff --git a/meta/classes/devshell.bbclass b/meta/classes/devshell.bbclass
index 14f957e12b..35456b517b 100644
--- a/meta/classes/devshell.bbclass
+++ b/meta/classes/devshell.bbclass
@@ -2,9 +2,14 @@ EXTRA_OEMAKE[export] = "1"
2 2
3do_devshell[dirs] = "${S}" 3do_devshell[dirs] = "${S}"
4do_devshell[nostamp] = "1" 4do_devshell[nostamp] = "1"
5do_devshell[interactive] = "1" 5
6devshell_do_devshell() { 6devshell_do_devshell() {
7 bash -i 7 export TERMWINDOWTITLE="Bitbake Developer Shell"
8 ${TERMCMD}
9 if [ $? -ne 0 ]; then
10 echo "Fatal: '${TERMCMD}' not found. Check TERMCMD variable."
11 exit 1
12 fi
8} 13}
9addtask devshell after do_patch 14addtask devshell after do_patch
10 15