diff options
-rw-r--r-- | meta/classes/insane.bbclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/classes/insane.bbclass b/meta/classes/insane.bbclass index 097dc3a001..0b151c214d 100644 --- a/meta/classes/insane.bbclass +++ b/meta/classes/insane.bbclass | |||
@@ -681,15 +681,15 @@ python populate_lic_qa_checksum() { | |||
681 | import tempfile | 681 | import tempfile |
682 | sane = True | 682 | sane = True |
683 | 683 | ||
684 | lic_files = d.getVar('LIC_FILES_CHKSUM', True) | 684 | lic_files = d.getVar('LIC_FILES_CHKSUM', True) or '' |
685 | lic = d.getVar('LICENSE', True) | 685 | lic = d.getVar('LICENSE', True) |
686 | pn = d.getVar('PN', True) | 686 | pn = d.getVar('PN', True) |
687 | 687 | ||
688 | if lic == "CLOSED": | 688 | if lic == "CLOSED": |
689 | return | 689 | return |
690 | 690 | ||
691 | if not lic_files: | 691 | if not lic_files and d.getVar('SRC_URI', True): |
692 | package_qa_handle_error("license-checksum", pn + ": Recipe file does not have license file information (LIC_FILES_CHKSUM)", d) | 692 | package_qa_handle_error("license-checksum", pn + ": Recipe file fetches files and does not have license file information (LIC_FILES_CHKSUM)", d) |
693 | return | 693 | return |
694 | 694 | ||
695 | srcdir = d.getVar('S', True) | 695 | srcdir = d.getVar('S', True) |