From: Richard Purdie Date: Sun, 3 Feb 2013 17:05:37 +0000 (+0000) Subject: initramfs-live-boot: Set RDEPENDS on the specific package that needs it X-Git-Tag: 2015-4~7730 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=7437a864f03ff56a4fba9d8ce9baf845b945ed9e;p=openembedded-core.git initramfs-live-boot: Set RDEPENDS on the specific package that needs it 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 --- 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 55a8600ba4..1e674a4941 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"