insane: Drop debug exclusion from buildpaths test

Message ID 20220704141808.917689-1-richard.purdie@linuxfoundation.org
State Accepted, archived
Commit dab0d98eee0e196fb24c16334982b5d568caa313
Headers show
Series insane: Drop debug exclusion from buildpaths test | expand

Commit Message

Richard Purdie July 4, 2022, 2:18 p.m. UTC
Once, we didn't have reproducible debug info and weren't sure how we'd get it.
This is long since fixed so we can drop this exclusion as obsolete.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
---
 meta/classes/insane.bbclass | 3 ---
 1 file changed, 3 deletions(-)

Patch

diff --git a/meta/classes/insane.bbclass b/meta/classes/insane.bbclass
index e571d72e183..37e10ad850a 100644
--- a/meta/classes/insane.bbclass
+++ b/meta/classes/insane.bbclass
@@ -445,9 +445,6 @@  def package_qa_check_buildpaths(path, name, d, elf, messages):
     explicitly ignored.
     """
     import stat
-    # Ignore .debug files, not interesting
-    if path.find(".debug") != -1:
-        return
 
     # Ignore symlinks/devs/fifos
     mode = os.lstat(path).st_mode