diff options
| -rw-r--r-- | bitbake/lib/toaster/bldcontrol/localhostbecontroller.py | 19 |
1 files changed, 7 insertions, 12 deletions
diff --git a/bitbake/lib/toaster/bldcontrol/localhostbecontroller.py b/bitbake/lib/toaster/bldcontrol/localhostbecontroller.py index 3e16837be1..c0774a3a0b 100644 --- a/bitbake/lib/toaster/bldcontrol/localhostbecontroller.py +++ b/bitbake/lib/toaster/bldcontrol/localhostbecontroller.py | |||
| @@ -69,21 +69,16 @@ class LocalhostBEController(BuildEnvironmentController): | |||
| 69 | #logger.debug("localhostbecontroller: shellcmd success") | 69 | #logger.debug("localhostbecontroller: shellcmd success") |
| 70 | return out | 70 | return out |
| 71 | 71 | ||
| 72 | def _createdirpath(self, path): | ||
| 73 | from os.path import dirname as DN | ||
| 74 | if path == "": | ||
| 75 | raise Exception("Invalid path creation specified.") | ||
| 76 | if not os.path.exists(DN(path)): | ||
| 77 | self._createdirpath(DN(path)) | ||
| 78 | if not os.path.exists(path): | ||
| 79 | os.mkdir(path, 0755) | ||
| 80 | |||
| 81 | def _setupBE(self): | 72 | def _setupBE(self): |
| 82 | assert self.pokydirname and os.path.exists(self.pokydirname) | 73 | assert self.pokydirname and os.path.exists(self.pokydirname) |
| 83 | self._createdirpath(self.be.builddir) | 74 | path = self.be.builddir |
| 84 | self._shellcmd("bash -c \"source %s/oe-init-build-env %s\"" % (self.pokydirname, self.be.builddir)) | 75 | if not path: |
| 76 | raise Exception("Invalid path creation specified.") | ||
| 77 | if not os.path.exists(path): | ||
| 78 | os.makedirs(path, 0755) | ||
| 79 | self._shellcmd("bash -c \"source %s/oe-init-build-env %s\"" % (self.pokydirname, path)) | ||
| 85 | # delete the templateconf.cfg; it may come from an unsupported layer configuration | 80 | # delete the templateconf.cfg; it may come from an unsupported layer configuration |
| 86 | os.remove(os.path.join(self.be.builddir, "conf/templateconf.cfg")) | 81 | os.remove(os.path.join(path, "conf/templateconf.cfg")) |
| 87 | 82 | ||
| 88 | 83 | ||
| 89 | def writeConfFile(self, file_name, variable_list = None, raw = None): | 84 | def writeConfFile(self, file_name, variable_list = None, raw = None): |
