summaryrefslogtreecommitdiffstats
path: root/meta/classes-recipe/update-rc.d.bbclass
diff options
context:
space:
mode:
authorPeter Kjellerstedt <peter.kjellerstedt@axis.com>2023-01-05 22:05:46 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-01-12 23:08:58 +0000
commitd5668a7fd4d33d0d1670baeef58385c3acf4becd (patch)
treeec974ed8be4c688bf5dd86e86ef13313b99afb46 /meta/classes-recipe/update-rc.d.bbclass
parent8b77cb3a8272ed6ceefa8c0970298d57b2915adc (diff)
downloadpoky-d5668a7fd4d33d0d1670baeef58385c3acf4becd.tar.gz
recipes, classes: Avoid adding extra whitespace to PACKAGESPLITFUNCS
This is a follow-up to commit 846ff49465 to remove the extra whitespace that is no longer needed after converting :append and :prepend to += and =+. (From OE-Core rev: 5a38be49e451c9f9d973b10a33c3972507f7b18a) Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes-recipe/update-rc.d.bbclass')
-rw-r--r--meta/classes-recipe/update-rc.d.bbclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes-recipe/update-rc.d.bbclass b/meta/classes-recipe/update-rc.d.bbclass
index a61d2c62ab..a19e704741 100644
--- a/meta/classes-recipe/update-rc.d.bbclass
+++ b/meta/classes-recipe/update-rc.d.bbclass
@@ -68,8 +68,8 @@ python __anonymous() {
68 update_rc_after_parse(d) 68 update_rc_after_parse(d)
69} 69}
70 70
71PACKAGESPLITFUNCS =+ "${@bb.utils.contains('DISTRO_FEATURES', 'sysvinit', 'populate_packages_updatercd ', '', d)}" 71PACKAGESPLITFUNCS =+ "${@bb.utils.contains('DISTRO_FEATURES', 'sysvinit', 'populate_packages_updatercd', '', d)}"
72PACKAGESPLITFUNCS:remove:class-nativesdk = "populate_packages_updatercd " 72PACKAGESPLITFUNCS:remove:class-nativesdk = "populate_packages_updatercd"
73 73
74populate_packages_updatercd[vardeps] += "updatercd_prerm updatercd_postrm updatercd_postinst" 74populate_packages_updatercd[vardeps] += "updatercd_prerm updatercd_postrm updatercd_postinst"
75populate_packages_updatercd[vardepsexclude] += "OVERRIDES" 75populate_packages_updatercd[vardepsexclude] += "OVERRIDES"