Lines Matching refs:builddir
9 def __init__(self, config, builddir, logtofile): argument
12 self.builddir = builddir
13 self.logfile = infra.open_log_file(builddir, "build", logtofile)
43 if not os.path.isdir(self.builddir):
44 os.makedirs(self.builddir)
46 config_file = os.path.join(self.builddir, ".config")
58 "O={}".format(self.builddir)]
89 cmd = ["make", "-C", self.builddir]
100 return os.path.join(self.builddir, "build-done")
106 if os.path.exists(self.builddir):
107 shutil.rmtree(self.builddir)