diff options
-rw-r--r-- | meta/classes/package.bbclass | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/meta/classes/package.bbclass b/meta/classes/package.bbclass index 50490bc89d..599df246f0 100644 --- a/meta/classes/package.bbclass +++ b/meta/classes/package.bbclass | |||
@@ -811,8 +811,11 @@ python split_and_strip_files () { | |||
811 | elf_file = isELF(file) | 811 | elf_file = isELF(file) |
812 | if elf_file & 1: | 812 | if elf_file & 1: |
813 | if elf_file & 2: | 813 | if elf_file & 2: |
814 | msg = "File '%s' from %s was already stripped, this will prevent future debugging!" % (file[len(dvar):], pn) | 814 | if 'already-stripped' in (d.getVar('INSANE_SKIP_' + pn, True) or "").split(): |
815 | package_qa_handle_error("already-stripped", msg, d) | 815 | bb.note("Skipping file %s from %s for already-stripped QA test" % (file[len(dvar):], pn)) |
816 | else: | ||
817 | msg = "File '%s' from %s was already stripped, this will prevent future debugging!" % (file[len(dvar):], pn) | ||
818 | package_qa_handle_error("already-stripped", msg, d) | ||
816 | continue | 819 | continue |
817 | # Check if it's a hard link to something else | 820 | # Check if it's a hard link to something else |
818 | if s.st_nlink > 1: | 821 | if s.st_nlink > 1: |