aboutsummaryrefslogtreecommitdiffstats
path: root/classes/devshell.bbclass
diff options
context:
space:
mode:
authorHolger Freyther <zecke@selfish.org>2006-11-11 01:44:32 +0000
committerHolger Freyther <zecke@selfish.org>2006-11-11 01:44:32 +0000
commit163652f7fb3d27a7efabe76c35f5b903b74bc8a7 (patch)
tree8bd951e1e5aad65055175d1c66d2113ff0d00922 /classes/devshell.bbclass
parent8b86a9487bc7ba997496ca8952f5045686dea6e5 (diff)
downloadopenembedded-163652f7fb3d27a7efabe76c35f5b903b74bc8a7.tar.gz
Add quotes for assignments to make the new parser happy
Diffstat (limited to 'classes/devshell.bbclass')
-rw-r--r--classes/devshell.bbclass6
1 files changed, 3 insertions, 3 deletions
diff --git a/classes/devshell.bbclass b/classes/devshell.bbclass
index 118e5e4a2a..14f957e12b 100644
--- a/classes/devshell.bbclass
+++ b/classes/devshell.bbclass
@@ -1,8 +1,8 @@
-EXTRA_OEMAKE[export] = 1
+EXTRA_OEMAKE[export] = "1"
do_devshell[dirs] = "${S}"
-do_devshell[nostamp] = 1
-do_devshell[interactive] = 1
+do_devshell[nostamp] = "1"
+do_devshell[interactive] = "1"
devshell_do_devshell() {
bash -i
}