diff options
author | Joe Slater <jslater@windriver.com> | 2015-09-02 15:24:20 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-09-03 12:43:33 +0100 |
commit | c80b582212336044c55052ad0d39f9da06d71438 (patch) | |
tree | 9943f36c901297a173189ce83654138825be74e5 /meta/recipes-support/debianutils | |
parent | d8caef4f6e38efb739866a1de38f3bae8f1754ed (diff) | |
download | poky-c80b582212336044c55052ad0d39f9da06d71438.tar.gz |
debianutils: create package for run-parts
Also add an RDEPENDS to dpkg so it will still
pull in run-parts.
(From OE-Core rev: aba3ef50d65e0dc8659a48bf98d0fb00dd44a6fc)
Signed-off-by: Joe Slater <jslater@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/debianutils')
-rw-r--r-- | meta/recipes-support/debianutils/debianutils_4.5.1.bb | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/meta/recipes-support/debianutils/debianutils_4.5.1.bb b/meta/recipes-support/debianutils/debianutils_4.5.1.bb index 9e5dd702f8..6b665fb2c3 100644 --- a/meta/recipes-support/debianutils/debianutils_4.5.1.bb +++ b/meta/recipes-support/debianutils/debianutils_4.5.1.bb | |||
@@ -26,8 +26,17 @@ do_install_append() { | |||
26 | fi | 26 | fi |
27 | } | 27 | } |
28 | 28 | ||
29 | # Note that we package the update-alternatives name. | ||
30 | # | ||
31 | PACKAGES =+ "${PN}-run-parts" | ||
32 | FILES_${PN}-run-parts = "${base_bindir}/run-parts.debianutils" | ||
33 | |||
34 | RDEPENDS_${PN} += "${PN}-run-parts" | ||
35 | |||
36 | |||
29 | ALTERNATIVE_PRIORITY="100" | 37 | ALTERNATIVE_PRIORITY="100" |
30 | ALTERNATIVE_${PN} = "add-shell installkernel remove-shell run-parts savelog tempfile which" | 38 | ALTERNATIVE_${PN} = "add-shell installkernel remove-shell savelog tempfile which" |
39 | ALTERNATIVE_${PN}-run-parts = "run-parts" | ||
31 | 40 | ||
32 | ALTERNATIVE_LINK_NAME[add-shell]="${sbindir}/add-shell" | 41 | ALTERNATIVE_LINK_NAME[add-shell]="${sbindir}/add-shell" |
33 | ALTERNATIVE_LINK_NAME[installkernel]="${sbindir}/installkernel" | 42 | ALTERNATIVE_LINK_NAME[installkernel]="${sbindir}/installkernel" |