diff mbox series

[U-Boot] buildman: fix typo

Message ID 20190118074029.18443-1-judge.packham@gmail.com
State Accepted
Commit 58804b8cf291c56eee9fbfbfdb7c10e8a238444b
Delegated to: Simon Glass
Headers show
Series [U-Boot] buildman: fix typo | expand

Commit Message

Chris Packham Jan. 18, 2019, 7:40 a.m. UTC
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(-)

Comments

Simon Glass Jan. 21, 2019, 6:24 p.m. UTC | #1
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>

Applied to u-boot-dm, thanks!
Simon Glass Jan. 21, 2019, 6:25 p.m. UTC | #2
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>
diff mbox series

Patch

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)