diff options
author | George Liu <liuxiwei1013@gmail.com> | 2021-08-02 11:02:00 -0700 |
---|---|---|
committer | Armin Kuster <akuster808@gmail.com> | 2021-08-29 08:59:29 -0700 |
commit | 1f18c623e94d85ef23f0a3970ff359880bd0caf5 (patch) | |
tree | 520bdfe0cb5d6b616d90e29be0507f708b60fcce | |
parent | 2c7b75c95e89a7d3c42ae15addbc396dbf62d7c6 (diff) | |
download | meta-security-1f18c623e94d85ef23f0a3970ff359880bd0caf5.tar.gz |
meta: Fix typos
Fix the variable spelling errors
s/SKIP_META_SECUIRTY_SANITY_CHECK/SKIP_META_SECURITY_SANITY_CHECK
Signed-off-by: George Liu <liuxiwei@inspur.com>
Acked-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r-- | classes/sanity-meta-security.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/sanity-meta-security.bbclass b/classes/sanity-meta-security.bbclass index b6c6b9c..f9e2698 100644 --- a/classes/sanity-meta-security.bbclass +++ b/classes/sanity-meta-security.bbclass | |||
@@ -1,7 +1,7 @@ | |||
1 | addhandler security_bbappend_distrocheck | 1 | addhandler security_bbappend_distrocheck |
2 | security_bbappend_distrocheck[eventmask] = "bb.event.SanityCheck" | 2 | security_bbappend_distrocheck[eventmask] = "bb.event.SanityCheck" |
3 | python security_bbappend_distrocheck() { | 3 | python security_bbappend_distrocheck() { |
4 | skip_check = e.data.getVar('SKIP_META_SECUIRTY_SANITY_CHECK') == "1" | 4 | skip_check = e.data.getVar('SKIP_META_SECURITY_SANITY_CHECK') == "1" |
5 | if 'security' not in e.data.getVar('DISTRO_FEATURES').split() and not skip_check: | 5 | if 'security' not in e.data.getVar('DISTRO_FEATURES').split() and not skip_check: |
6 | bb.warn("You have included the meta-security layer, but \ | 6 | bb.warn("You have included the meta-security layer, but \ |
7 | 'security' has not been enabled in your DISTRO_FEATURES. Some bbappend files \ | 7 | 'security' has not been enabled in your DISTRO_FEATURES. Some bbappend files \ |