diff options
| -rw-r--r-- | meta/classes/insane.bbclass | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/classes/insane.bbclass b/meta/classes/insane.bbclass index f7781ce6fe..47988bd1e9 100644 --- a/meta/classes/insane.bbclass +++ b/meta/classes/insane.bbclass | |||
| @@ -585,6 +585,10 @@ def package_qa_check_buildpaths(path, name, d, elf, messages): | |||
| 585 | if os.path.islink(path): | 585 | if os.path.islink(path): |
| 586 | return | 586 | return |
| 587 | 587 | ||
| 588 | # Ignore ipk and deb's CONTROL dir | ||
| 589 | if path.find(name + "/CONTROL/") != -1 or path.find(name + "/DEBIAN/") != -1: | ||
| 590 | return | ||
| 591 | |||
| 588 | tmpdir = d.getVar('TMPDIR', True) | 592 | tmpdir = d.getVar('TMPDIR', True) |
| 589 | with open(path) as f: | 593 | with open(path) as f: |
| 590 | file_content = f.read() | 594 | file_content = f.read() |
