diff options
author | Martin Jansa <martin.jansa@gmail.com> | 2013-02-06 14:25:22 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-02-06 14:44:49 +0000 |
commit | 56bc2bb95ac51cd1c0a962d65b0eae8568139a06 (patch) | |
tree | 5620d6d2cbd56a649b15912e025852d1dcd31c30 | |
parent | 8868530933e8f3a94a8a24265d8fad178a27d27d (diff) | |
download | poky-56bc2bb95ac51cd1c0a962d65b0eae8568139a06.tar.gz |
insane.bbclass: Add missing R* variables to pkgvarcheck
* check also RSUGGESTS, RCONFLICTS, RPROVIDES, RREPLACES
(From OE-Core rev: 63d9926dde562fd2447fc26482745c3b6f232c12)
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes/insane.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/insane.bbclass b/meta/classes/insane.bbclass index 58fc70c56f..d285e561de 100644 --- a/meta/classes/insane.bbclass +++ b/meta/classes/insane.bbclass | |||
@@ -908,7 +908,7 @@ python () { | |||
908 | 908 | ||
909 | issues = [] | 909 | issues = [] |
910 | if (d.getVar('PACKAGES', True) or "").split(): | 910 | if (d.getVar('PACKAGES', True) or "").split(): |
911 | for var in 'RDEPENDS', 'RRECOMMENDS', 'FILES', 'pkg_preinst', 'pkg_postinst', 'pkg_prerm', 'pkg_postrm': | 911 | for var in 'RDEPENDS', 'RRECOMMENDS', 'RSUGGESTS', 'RCONFLICTS', 'RPROVIDES', 'RREPLACES', 'FILES', 'pkg_preinst', 'pkg_postinst', 'pkg_prerm', 'pkg_postrm': |
912 | if d.getVar(var): | 912 | if d.getVar(var): |
913 | issues.append(var) | 913 | issues.append(var) |
914 | for i in issues: | 914 | for i in issues: |