summaryrefslogtreecommitdiffstats
path: root/meta-networking
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-04-01 13:16:37 -0700
commita4b25c01a5a1e0e39c389779252139206b760718 (patch)
tree64b9e3398ba8609b6e864b993cfa15f463476946 /meta-networking
parent87c5669a289f5a89d7a5129465d79eadf2c52548 (diff)
downloadmeta-openembedded-a4b25c01a5a1e0e39c389779252139206b760718.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>
Diffstat (limited to 'meta-networking')
-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}/*"