From: Peter Kjellerstedt Date: Fri, 12 Sep 2025 15:57:10 +0000 (+0200) Subject: systemd-systemctl-native: Use += instead of :append X-Git-Tag: 2025-04.4-walnascar~27 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d3c754dae42dcd68274711c9da3def3621d55634;p=thirdparty%2Fopenembedded%2Fopenembedded-core.git systemd-systemctl-native: Use += instead of :append There is no reason to use EXTRA_OEMESON:append when += will do. Signed-off-by: Peter Kjellerstedt Signed-off-by: Steve Sakoman --- diff --git a/meta/recipes-core/systemd/systemd-systemctl-native_257.6.bb b/meta/recipes-core/systemd/systemd-systemctl-native_257.6.bb index 73862b4e23..041a040a26 100644 --- a/meta/recipes-core/systemd/systemd-systemctl-native_257.6.bb +++ b/meta/recipes-core/systemd/systemd-systemctl-native_257.6.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}"