diff options
author | Richard Purdie <richard@openedhand.com> | 2007-09-17 08:14:16 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2007-09-17 08:14:16 +0000 |
commit | 51d9c76e954bef233c66fba328ffc13a496857fc (patch) | |
tree | ad2e79c2d85c188f2ffd34dfb3aea4d62b095a0e /meta/classes | |
parent | 2129b596fa06b89ba6892b9f8b9d4412044acfc9 (diff) | |
download | poky-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
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/devshell.bbclass | 9 |
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 | ||
3 | do_devshell[dirs] = "${S}" | 3 | do_devshell[dirs] = "${S}" |
4 | do_devshell[nostamp] = "1" | 4 | do_devshell[nostamp] = "1" |
5 | do_devshell[interactive] = "1" | 5 | |
6 | devshell_do_devshell() { | 6 | devshell_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 | } |
9 | addtask devshell after do_patch | 14 | addtask devshell after do_patch |
10 | 15 | ||