mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
buildman: fix typo
Fix a typo in the error message from CheckOutputDir(). Signed-off-by: Chris Packham <judge.packham@gmail.com> Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
3600b46117
commit
58804b8cf2
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue