diff options
author | Zygmunt Krynicki <zygmunt.krynicki@huawei.com> | 2022-02-19 17:40:07 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-02-20 16:45:24 +0000 |
commit | d40390c74bdcec4265ac703e0b090a9a428beb55 (patch) | |
tree | 086b167d6280431a1c14b11596b56de18661aedf /bitbake | |
parent | e0342695a80f46c872bfba2a3f7b171866a51831 (diff) | |
download | poky-d40390c74bdcec4265ac703e0b090a9a428beb55.tar.gz |
bitbake: cookerdata: Fix typo "normally"
(Bitbake rev: d0b633256daf8d11f213a14fb44ebc6bc5d45f37)
Signed-off-by: Zygmunt Krynicki <zygmunt.krynicki@huawei.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/bb/cookerdata.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/cookerdata.py b/bitbake/lib/bb/cookerdata.py index a961f36574..e4d91486d1 100644 --- a/bitbake/lib/bb/cookerdata.py +++ b/bitbake/lib/bb/cookerdata.py | |||
@@ -428,7 +428,7 @@ class CookerDataBuilder(object): | |||
428 | for bbclass in bbclasses: | 428 | for bbclass in bbclasses: |
429 | data = _inherit(bbclass, data) | 429 | data = _inherit(bbclass, data) |
430 | 430 | ||
431 | # Nomally we only register event handlers at the end of parsing .bb files | 431 | # Normally we only register event handlers at the end of parsing .bb files |
432 | # We register any handlers we've found so far here... | 432 | # We register any handlers we've found so far here... |
433 | for var in data.getVar('__BBHANDLERS', False) or []: | 433 | for var in data.getVar('__BBHANDLERS', False) or []: |
434 | handlerfn = data.getVarFlag(var, "filename", False) | 434 | handlerfn = data.getVarFlag(var, "filename", False) |