]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
systemd-systemctl-native: Use += instead of :append
authorPeter Kjellerstedt <peter.kjellerstedt@axis.com>
Fri, 28 Mar 2025 19:21:31 +0000 (20:21 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 1 Apr 2025 10:58:22 +0000 (11:58 +0100)
There is no reason to use EXTRA_OEMESON:append when += will do.

Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/recipes-core/systemd/systemd-systemctl-native_257.4.bb

index 73862b4e23cb570fdd93d277c64d6cdfa4778e7d..041a040a26540908cd117d87f7a796927fecfc7a 100644 (file)
@@ -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}"