summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichal Sieron <michalwsieron@gmail.com>2026-03-29 23:37:07 +0200
committerKhem Raj <khem.raj@oss.qualcomm.com>2026-03-30 19:46:42 -0700
commite46340b882a3df715719acb3e85ffbc5d68a3814 (patch)
tree412a54416c174fe2c7e6c6d16484bb8fcd9da056
parentffa4b60450758cdb79ae0e0c58061a381881f9ff (diff)
downloadmeta-openembedded-e46340b882a3df715719acb3e85ffbc5d68a3814.tar.gz
postfix: Convert confusing appends to override syntax
While in this case `RDEPENDS:class-target +=` wouldn't result in any unwanted override, there is no guarantee there won't be a change, which would be hidden by this override. To avoid any surprises in the future let's use `:append:class-target =` syntax here. Signed-off-by: Michal Sieron <michalwsieron@gmail.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
-rw-r--r--meta-networking/recipes-daemons/postfix/postfix_3.10.8.bb4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta-networking/recipes-daemons/postfix/postfix_3.10.8.bb b/meta-networking/recipes-daemons/postfix/postfix_3.10.8.bb
index 2423e17169..a66ecc0b5d 100644
--- a/meta-networking/recipes-daemons/postfix/postfix_3.10.8.bb
+++ b/meta-networking/recipes-daemons/postfix/postfix_3.10.8.bb
@@ -240,8 +240,8 @@ pkg_postinst_ontarget:${PN}-cfg () {
240} 240}
241 241
242PACKAGES =+ "${PN}-cfg" 242PACKAGES =+ "${PN}-cfg"
243RDEPENDS:${PN}-cfg:class-target += "${PN}-bin" 243RDEPENDS:${PN}-cfg:append:class-target = " ${PN}-bin"
244RDEPENDS:${PN}:class-target += "${PN}-cfg" 244RDEPENDS:${PN}:append:class-target = " ${PN}-cfg"
245# Exclude .debug directories from the main package 245# Exclude .debug directories from the main package
246FILES:${PN}-bin += "${localstatedir} ${bindir}/* ${sbindir}/* \ 246FILES:${PN}-bin += "${localstatedir} ${bindir}/* ${sbindir}/* \
247 ${libexecdir}/* ${systemd_unitdir}/*" 247 ${libexecdir}/* ${systemd_unitdir}/*"