summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
Diffstat (limited to 'meta')
-rw-r--r--meta/classes/base.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass
index bb1f4b7533..d5798f9c48 100644
--- a/meta/classes/base.bbclass
+++ b/meta/classes/base.bbclass
@@ -152,7 +152,7 @@ python base_do_fetch() {
152addtask unpack after do_fetch 152addtask unpack after do_fetch
153do_unpack[dirs] = "${WORKDIR}" 153do_unpack[dirs] = "${WORKDIR}"
154 154
155do_unpack[cleandirs] = "${@d.getVar('S') if d.getVar('S') != d.getVar('WORKDIR') else os.path.join('${S}', 'patches')}" 155do_unpack[cleandirs] = "${@d.getVar('S') if os.path.normpath(d.getVar('S')) != os.path.normpath(d.getVar('WORKDIR')) else os.path.join('${S}', 'patches')}"
156 156
157python base_do_unpack() { 157python base_do_unpack() {
158 src_uri = (d.getVar('SRC_URI') or "").split() 158 src_uri = (d.getVar('SRC_URI') or "").split()