diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2024-09-04 11:24:58 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2024-09-05 21:50:10 +0100 |
commit | 1948bdf63908e869d85d07d69e5dc24cf78603b9 (patch) | |
tree | a3c162fcb72e2bb9b23073530914e703a893ce29 | |
parent | c6b883106bc414312e58fe8c682b3ccc1257f114 (diff) | |
download | poky-1948bdf63908e869d85d07d69e5dc24cf78603b9.tar.gz |
insane: Remove dependency on TCLIBC from QA test
The TCLIBC value is already encoded into build paths through the triplet
so no need to encode it here where it can cause problems for allarch output
that span multiple libcs.
(From OE-Core rev: ea8c7a457a79589c35ca80b2f265799164855674)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes-global/insane.bbclass | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/classes-global/insane.bbclass b/meta/classes-global/insane.bbclass index d7aba89b49..1691d96b64 100644 --- a/meta/classes-global/insane.bbclass +++ b/meta/classes-global/insane.bbclass | |||
@@ -430,6 +430,7 @@ def package_qa_hash_style(path, name, d, elf): | |||
430 | if has_syms and not sane: | 430 | if has_syms and not sane: |
431 | path = package_qa_clean_path(path, d, name) | 431 | path = package_qa_clean_path(path, d, name) |
432 | oe.qa.handle_error("ldflags", "File %s in package %s doesn't have GNU_HASH (didn't pass LDFLAGS?)" % (path, name), d) | 432 | oe.qa.handle_error("ldflags", "File %s in package %s doesn't have GNU_HASH (didn't pass LDFLAGS?)" % (path, name), d) |
433 | package_qa_hash_style[vardepsexclude] = "TCLIBC" | ||
433 | 434 | ||
434 | 435 | ||
435 | QAPATHTEST[buildpaths] = "package_qa_check_buildpaths" | 436 | QAPATHTEST[buildpaths] = "package_qa_check_buildpaths" |