mirror of
https://git.yoctoproject.org/poky
synced 2026-03-25 19:02:23 +01:00
oe-setup-build: Fix typo
A variable was mistyped in an error message resulting in this error: NameError: name 'tempalte_name' is not defined. Did you mean: 'template_name'? (From OE-Core rev: 2b69c249ab3e2fc0ffb6196080fe35266ee91bd3) Signed-off-by: Ryan Eatmon <reatmon@ti.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 275a3c015d37729c3b0c9cc4395d50ea2f210f02) Signed-off-by: Clayton Casciato <majortomtosourcecontrol@gmail.com> Signed-off-by: Yoann Congal <yoann.congal@smile.fr> Signed-off-by: Paul Barker <paul@pbarker.dev>
This commit is contained in:
@@ -77,7 +77,7 @@ def find_template(template_name, templates):
|
||||
for t in templates:
|
||||
if t["templatename"] == template_name:
|
||||
return t
|
||||
print("Configuration {} is not one of {}, please try again.".format(tempalte_name, [t["templatename"] for t in templates]))
|
||||
print("Configuration {} is not one of {}, please try again.".format(template_name, [t["templatename"] for t in templates]))
|
||||
return None
|
||||
|
||||
def setup_build_env(args):
|
||||
|
||||
Reference in New Issue
Block a user