Lines Matching refs:builddir
34 (builddir, newbuilddir) = self.setupfunc("-st", None, self.suite)
36 os.chdir(builddir)
71 builddir = os.environ['BUILDDIR']
77 newbuilddir = builddir + suffix
85 oe.path.copytree(builddir + "/conf", newbuilddir + "/conf")
86 oe.path.copytree(builddir + "/cache", newbuilddir + "/cache")
90 if builddir + "/" in os.environ[e]:
91 os.environ[e] = os.environ[e].replace(builddir + "/", newbuilddir + "/")
92 if os.environ[e].endswith(builddir):
93 os.environ[e] = os.environ[e].replace(builddir, newbuilddir)
109 if builddir in cp[p] and newbuilddir not in cp[p]:
110 cp[p] = cp[p].replace(builddir, newbuilddir)
121 return (builddir, newbuilddir)
240 builddir = os.environ.get("BUILDDIR")
243 self.tc_kwargs['init']['config_paths']['builddir'] = builddir
244 … self.tc_kwargs['init']['config_paths']['localconf'] = os.path.join(builddir, "conf/local.conf")
245 … self.tc_kwargs['init']['config_paths']['bblayers'] = os.path.join(builddir, "conf/bblayers.conf")
272 builddir = os.environ.get("BUILDDIR")
273 if os.getcwd() != builddir:
274 self.tc.logger.info("Changing cwd to %s" % builddir)
275 os.chdir(builddir)