diff options
author | Matt Madison <matt@madison.systems> | 2015-10-20 07:28:05 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-10-21 22:56:04 +0100 |
commit | ac1bc7d5a0cf1fe51ea563b6ae63795a8ee168e6 (patch) | |
tree | 94f35c921d2828ad48456d174cbb77d49d27cda8 | |
parent | 35c043b42b87df180def01e529ddb7981e80c31a (diff) | |
download | poky-ac1bc7d5a0cf1fe51ea563b6ae63795a8ee168e6.tar.gz |
i2c-tools: fix inverted RDEPENDS
The runtime dependency between i2c-tools and i2c-tools-misc was
backwards when the packages were split. With this change,
including i2c-tools in an image no longer drags in perl.
(From OE-Core rev: e1837b51e4054a725ce01007f27544ee21db79ef)
Signed-off-by: Matt Madison <matt@madison.systems>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-devtools/i2c-tools/i2c-tools_3.1.2.bb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/meta/recipes-devtools/i2c-tools/i2c-tools_3.1.2.bb b/meta/recipes-devtools/i2c-tools/i2c-tools_3.1.2.bb index 92f4d69d3a..042695bdc0 100644 --- a/meta/recipes-devtools/i2c-tools/i2c-tools_3.1.2.bb +++ b/meta/recipes-devtools/i2c-tools/i2c-tools_3.1.2.bb | |||
@@ -30,5 +30,4 @@ FILES_${PN}-misc = "${sbindir}/i2c-stub-from-dump \ | |||
30 | ${bindir}/decode-dimms \ | 30 | ${bindir}/decode-dimms \ |
31 | ${bindir}/decode-vaio \ | 31 | ${bindir}/decode-vaio \ |
32 | " | 32 | " |
33 | RDEPENDS_${PN} += "${PN}-misc" | 33 | RDEPENDS_${PN}-misc = "${PN} perl" |
34 | RDEPENDS_${PN}-misc += "perl" | ||