From: Matt Madison Date: Tue, 20 Oct 2015 14:28:05 +0000 (-0700) Subject: i2c-tools: fix inverted RDEPENDS X-Git-Tag: 2015-10~89 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=e1837b51e4054a725ce01007f27544ee21db79ef;p=openembedded-core.git 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 Signed-off-by: Ross Burton --- 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"