diff options
author | Naoki Hayama <naoki.hayama@lineo.co.jp> | 2020-10-12 14:59:52 +0900 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-10-13 09:42:08 +0100 |
commit | a1f503df6ed9555ba678787f506cf2858b82ed96 (patch) | |
tree | e8ed5b5ece7e3af1c8ac1609e6f9381bc9e6a29b /meta/classes/uninative.bbclass | |
parent | 500fa845514ed08fa02c8703971671b17a273c51 (diff) | |
download | poky-a1f503df6ed9555ba678787f506cf2858b82ed96.tar.gz |
uninative: Fix typo in error message
Fix typo in an error message.
s/verson/version/
(From OE-Core rev: bc96db2e0b5b8a9cc2c909ea70df290e03a50b94)
Signed-off-by: Naoki Hayama <naoki.hayama@lineo.co.jp>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/uninative.bbclass')
-rw-r--r-- | meta/classes/uninative.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/uninative.bbclass b/meta/classes/uninative.bbclass index 316c0f0616..1e19917a97 100644 --- a/meta/classes/uninative.bbclass +++ b/meta/classes/uninative.bbclass | |||
@@ -89,7 +89,7 @@ python uninative_event_fetchloader() { | |||
89 | # ldd output is "ldd (Ubuntu GLIBC 2.23-0ubuntu10) 2.23", extract last option from first line | 89 | # ldd output is "ldd (Ubuntu GLIBC 2.23-0ubuntu10) 2.23", extract last option from first line |
90 | glibcver = subprocess.check_output(["ldd", "--version"]).decode('utf-8').split('\n')[0].split()[-1] | 90 | glibcver = subprocess.check_output(["ldd", "--version"]).decode('utf-8').split('\n')[0].split()[-1] |
91 | if bb.utils.vercmp_string(d.getVar("UNINATIVE_MAXGLIBCVERSION"), glibcver) < 0: | 91 | if bb.utils.vercmp_string(d.getVar("UNINATIVE_MAXGLIBCVERSION"), glibcver) < 0: |
92 | raise RuntimeError("Your host glibc verson (%s) is newer than that in uninative (%s). Disabling uninative so that sstate is not corrupted." % (glibcver, d.getVar("UNINATIVE_MAXGLIBCVERSION"))) | 92 | raise RuntimeError("Your host glibc version (%s) is newer than that in uninative (%s). Disabling uninative so that sstate is not corrupted." % (glibcver, d.getVar("UNINATIVE_MAXGLIBCVERSION"))) |
93 | 93 | ||
94 | cmd = d.expand("\ | 94 | cmd = d.expand("\ |
95 | mkdir -p ${UNINATIVE_STAGING_DIR}-uninative; \ | 95 | mkdir -p ${UNINATIVE_STAGING_DIR}-uninative; \ |