summaryrefslogtreecommitdiff
path: root/tools/buildman/builderthread.py
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2023-07-20 02:49:10 +0300
committerSimon Glass <sjg@chromium.org>2023-07-24 18:34:11 +0300
commit4a7419bfbbeae2838422b13fce06d83f30491d70 (patch)
tree83bb29428c61eeaee6ac9de16e5dcc412392c940 /tools/buildman/builderthread.py
parent606e54357ff2fd590a55a916093bb6d1b8ed67e1 (diff)
downloadu-boot-4a7419bfbbeae2838422b13fce06d83f30491d70.tar.xz
buildman: Export _get_output_dir() to avoid warnings
Make this a public memory since it is used outside the class. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/buildman/builderthread.py')
-rw-r--r--tools/buildman/builderthread.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/buildman/builderthread.py b/tools/buildman/builderthread.py
index 179fc477c0..45ae6edf9f 100644
--- a/tools/buildman/builderthread.py
+++ b/tools/buildman/builderthread.py
@@ -351,7 +351,7 @@ class BuilderThread(threading.Thread):
return
# Write the output and stderr
- output_dir = self.builder._get_output_dir(result.commit_upto)
+ output_dir = self.builder.get_output_dir(result.commit_upto)
mkdir(output_dir)
build_dir = self.builder.get_build_dir(result.commit_upto,
result.brd.target)