diff mbox series

systemd-systemctl-native: Use += instead of :append

Message ID 20250328192131.1766660-1-pkj@axis.com
State Accepted, archived
Commit 2ebd45d351dbf801a5aef0cc4a0a1c684e544412
Headers show
Series systemd-systemctl-native: Use += instead of :append | expand

Commit Message

Peter Kjellerstedt March 28, 2025, 7:21 p.m. UTC
There is no reason to use EXTRA_OEMESON:append when += will do.

Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
---
 meta/recipes-core/systemd/systemd-systemctl-native_257.4.bb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff mbox series

Patch

diff --git a/meta/recipes-core/systemd/systemd-systemctl-native_257.4.bb b/meta/recipes-core/systemd/systemd-systemctl-native_257.4.bb
index 73862b4e23..041a040a26 100644
--- a/meta/recipes-core/systemd/systemd-systemctl-native_257.4.bb
+++ b/meta/recipes-core/systemd/systemd-systemctl-native_257.4.bb
@@ -8,9 +8,9 @@  inherit pkgconfig meson native
 
 MESON_TARGET = "systemctl:executable"
 MESON_INSTALL_TAGS = "systemctl"
-EXTRA_OEMESON:append = " -Dlink-systemctl-shared=false"
+EXTRA_OEMESON += "-Dlink-systemctl-shared=false"
 
 # Systemctl is supposed to operate on target, but the target sysroot is not
 # determined at run-time, but rather set during configure
 # More details are here https://github.com/systemd/systemd/issues/35897#issuecomment-2665405887
-EXTRA_OEMESON:append = " --sysconfdir ${sysconfdir_native}"
+EXTRA_OEMESON += "--sysconfdir ${sysconfdir_native}"