From patchwork Sun Feb 3 23:55:41 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [11/22] initramfs-live-boot: Set RDEPENDS on the specific package that needs it Date: Sun, 03 Feb 2013 23:55:41 -0000 From: Richard Purdie X-Patchwork-Id: 43879 Message-Id: <8e2308aa8074228e92fdc0bcd2a9e2bafa7db619.1359935562.git.richard.purdie@linuxfoundation.org> To: openembedded-core@lists.openembedded.org Set the RDEPENDS on the specific package that has the dependency and stop it being applied to for example ${PN}-doc (and others). Signed-off-by: Richard Purdie --- meta/recipes-core/initrdscripts/initramfs-live-boot_1.0.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-core/initrdscripts/initramfs-live-boot_1.0.bb b/meta/recipes-core/initrdscripts/initramfs-live-boot_1.0.bb index 55a8600..1e674a4 100644 --- a/meta/recipes-core/initrdscripts/initramfs-live-boot_1.0.bb +++ b/meta/recipes-core/initrdscripts/initramfs-live-boot_1.0.bb @@ -1,8 +1,8 @@ DESCRIPTION = "A live image init script" LICENSE = "MIT" LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" -RDEPENDS = "udev" DEPENDS = "virtual/kernel" +RDEPENDS_${PN} = "udev" SRC_URI = "file://init-live.sh" PR = "r11"