From: Chris Packham Date: Fri, 18 Jan 2019 07:40:29 +0000 (+1300) Subject: buildman: fix typo X-Git-Tag: v2019.04-rc2~19^2~4 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=58804b8cf291c56eee9fbfbfdb7c10e8a238444b;p=oweals%2Fu-boot.git buildman: fix typo Fix a typo in the error message from CheckOutputDir(). Signed-off-by: Chris Packham Reviewed-by: Simon Glass --- diff --git a/tools/buildman/control.py b/tools/buildman/control.py index 27916d3c35..fcf531c5f1 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)