[U-Boot] [PATCH] buildman: fix typo

Fix a typo in the error message from CheckOutputDir().
Signed-off-by: Chris Packham judge.packham@gmail.com ---
tools/buildman/control.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/buildman/control.py b/tools/buildman/control.py index 27916d3c355d..fcf531c5f143 100644 --- a/tools/buildman/control.py +++ b/tools/buildman/control.py @@ -99,7 +99,7 @@ def CheckOutputDir(output_dir): cwd_path = os.path.realpath('.') while True: if os.path.realpath(path) == cwd_path: - Print("Cannot use output directory '%s' since it is within the current directtory '%s'" % + Print("Cannot use output directory '%s' since it is within the current directory '%s'" % (path, cwd_path)) sys.exit(1) parent = os.path.dirname(path)

On Fri, 18 Jan 2019 at 20:40, Chris Packham judge.packham@gmail.com wrote:
Fix a typo in the error message from CheckOutputDir().
Signed-off-by: Chris Packham judge.packham@gmail.com
tools/buildman/control.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
Reviewed-by: Simon Glass sjg@chromium.org
participants (2)
-
Chris Packham
-
Simon Glass