projects
/
project
/
bcm63xx
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f855a7b
)
moveconfig: fix error message in do_autoconf()
author
Chris Packham
<
[email protected]
>
Sun, 27 Aug 2017 08:00:51 +0000
(20:00 +1200)
committer
Masahiro Yamada
<
[email protected]
>
Sun, 15 Oct 2017 09:13:13 +0000
(18:13 +0900)
Move the % arch outside the double quote so that the missing toolchain
message is displayed correctly.
Signed-off-by: Chris Packham <
[email protected]
>
Reviewed-by: Simon Glass <
[email protected]
>
Signed-off-by: Masahiro Yamada <
[email protected]
>
tools/moveconfig.py
patch
|
blob
|
history
diff --git
a/tools/moveconfig.py
b/tools/moveconfig.py
index e3116461bad0ec577b5081ff332077c5babdefe6..bdd4899fcd7f80802b395ee49b7cc9ce4bdd76a3 100755
(executable)
--- a/
tools/moveconfig.py
+++ b/
tools/moveconfig.py
@@
-1170,7
+1170,7
@@
class Slot:
toolchain = self.toolchains.Select(arch)
except ValueError:
self.log += color_text(self.options.color, COLOR_YELLOW,
- "Tool chain for '%s' is missing. Do nothing.\n
% arch"
)
+ "Tool chain for '%s' is missing. Do nothing.\n
" % arch
)
self.finish(False)
return
env = toolchain.MakeEnvironment(False)