diff mbox series

[U-Boot,14/15] tools: Set an initial value for indir

Message ID 20180923224727.204542-15-sjg@chromium.org
State Superseded
Delegated to: Simon Glass
Headers show
Series test: Various test refinements and improvements | expand

Commit Message

Simon Glass Sept. 23, 2018, 10:47 p.m. UTC
This variable is not documented or set up in the module. Fix this.

Signed-off-by: Simon Glass <sjg@chromium.org>
---

 tools/patman/tools.py | 3 +++
 1 file changed, 3 insertions(+)
diff mbox series

Patch

diff --git a/tools/patman/tools.py b/tools/patman/tools.py
index e80481438b5..e3da14d1eff 100644
--- a/tools/patman/tools.py
+++ b/tools/patman/tools.py
@@ -22,6 +22,9 @@  chroot_path = None
 # Search paths to use for Filename(), used to find files
 search_paths = []
 
+# List of paths to use when looking for an input file
+indir = []
+
 
 def PrepareOutputDir(dirname, preserve=False):
     """Select an output directory, ensuring it exists.