[OE-core] [PATCH 1/7] build: don't automatically mkdir/chdir B

Ross Burton ross.burton at intel.com
Mon Jul 13 14:02:59 UTC 2015


Signed-off-by: Ross Burton <ross.burton at intel.com>
---
 bitbake/lib/bb/build.py | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/bitbake/lib/bb/build.py b/bitbake/lib/bb/build.py
index cce01fe..7cefee7 100644
--- a/bitbake/lib/bb/build.py
+++ b/bitbake/lib/bb/build.py
@@ -183,7 +183,9 @@ def exec_func(func, d, dirs = None):
         adir = dirs[-1]
     else:
         adir = d.getVar('B', True)
-        bb.utils.mkdirhier(adir)
+        bb.note("NOT creating implicit %s (for %s)" % (adir, func))
+        #bb.utils.mkdirhier(adir)
+        adir = None
 
     ispython = flags.get('python')
 
-- 
2.1.4




More information about the Openembedded-core mailing list