diff options
Diffstat (limited to 'meta/classes/insane.bbclass')
-rw-r--r-- | meta/classes/insane.bbclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/insane.bbclass b/meta/classes/insane.bbclass index a11085313b..4537eec891 100644 --- a/meta/classes/insane.bbclass +++ b/meta/classes/insane.bbclass | |||
@@ -934,7 +934,7 @@ def package_qa_check_expanded_d(path,name,d,elf,messages): | |||
934 | for pak in packages: | 934 | for pak in packages: |
935 | # Go through all variables and check if expanded D is found, warn the user accordingly | 935 | # Go through all variables and check if expanded D is found, warn the user accordingly |
936 | for var in 'FILES','pkg_preinst', 'pkg_postinst', 'pkg_prerm', 'pkg_postrm': | 936 | for var in 'FILES','pkg_preinst', 'pkg_postinst', 'pkg_prerm', 'pkg_postrm': |
937 | bbvar = d.getVar(var + "_" + pak) | 937 | bbvar = d.getVar(var + "_" + pak, False) |
938 | if bbvar: | 938 | if bbvar: |
939 | # Bitbake expands ${D} within bbvar during the previous step, so we check for its expanded value | 939 | # Bitbake expands ${D} within bbvar during the previous step, so we check for its expanded value |
940 | if expanded_d in bbvar: | 940 | if expanded_d in bbvar: |
@@ -1185,7 +1185,7 @@ python () { | |||
1185 | for dep in (d.getVar('QADEPENDS', True) or "").split(): | 1185 | for dep in (d.getVar('QADEPENDS', True) or "").split(): |
1186 | d.appendVarFlag('do_package_qa', 'depends', " %s:do_populate_sysroot" % dep) | 1186 | d.appendVarFlag('do_package_qa', 'depends', " %s:do_populate_sysroot" % dep) |
1187 | for var in 'RDEPENDS', 'RRECOMMENDS', 'RSUGGESTS', 'RCONFLICTS', 'RPROVIDES', 'RREPLACES', 'FILES', 'pkg_preinst', 'pkg_postinst', 'pkg_prerm', 'pkg_postrm', 'ALLOW_EMPTY': | 1187 | for var in 'RDEPENDS', 'RRECOMMENDS', 'RSUGGESTS', 'RCONFLICTS', 'RPROVIDES', 'RREPLACES', 'FILES', 'pkg_preinst', 'pkg_postinst', 'pkg_prerm', 'pkg_postrm', 'ALLOW_EMPTY': |
1188 | if d.getVar(var): | 1188 | if d.getVar(var, False): |
1189 | issues.append(var) | 1189 | issues.append(var) |
1190 | else: | 1190 | else: |
1191 | d.setVarFlag('do_package_qa', 'rdeptask', '') | 1191 | d.setVarFlag('do_package_qa', 'rdeptask', '') |