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:52:16 +0100 |
commit | e1837b51e4054a725ce01007f27544ee21db79ef (patch) | |
tree | 7506f66fcd4461d8b803af41ac30af35c5e1451a /meta/recipes-devtools | |
parent | 4f48eeb9396ef904202ab1abeb38ec971feaeb4b (diff) | |
download | openembedded-core-e1837b51e4054a725ce01007f27544ee21db79ef.tar.gz openembedded-core-e1837b51e4054a725ce01007f27544ee21db79ef.tar.bz2 openembedded-core-e1837b51e4054a725ce01007f27544ee21db79ef.zip |
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.
Signed-off-by: Matt Madison <matt@madison.systems>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/recipes-devtools')
-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 \ ${bindir}/decode-dimms \ ${bindir}/decode-vaio \ " -RDEPENDS_${PN} += "${PN}-misc" -RDEPENDS_${PN}-misc += "perl" +RDEPENDS_${PN}-misc = "${PN} perl" |