summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/classes/devshell.bbclass4
1 files changed, 3 insertions, 1 deletions
diff --git a/meta/classes/devshell.bbclass b/meta/classes/devshell.bbclass
index 41164a3f33..4451436473 100644
--- a/meta/classes/devshell.bbclass
+++ b/meta/classes/devshell.bbclass
@@ -17,7 +17,9 @@ python do_devshell () {
17 17
18addtask devshell after do_patch 18addtask devshell after do_patch
19 19
20do_devshell[dirs] = "${S}" 20# The directory that the terminal starts in
21DEVSHELL_STARTDIR ?= "${S}"
22do_devshell[dirs] = "${DEVSHELL_STARTDIR}"
21do_devshell[nostamp] = "1" 23do_devshell[nostamp] = "1"
22 24
23# devshell and fakeroot/pseudo need careful handling since only the final 25# devshell and fakeroot/pseudo need careful handling since only the final