summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPeter Kjellerstedt <peter.kjellerstedt@axis.com>2025-09-12 17:57:10 +0200
committerSteve Sakoman <steve@sakoman.com>2025-09-22 12:21:23 -0700
commitef043f337c3f97c34690f61b57c4615ce187482d (patch)
treef6fc2a9d9b545856832d569cc071bf9757f63c5e
parent59e8e23b75e452f913f4241a593a72c44e938200 (diff)
downloadpoky-ef043f337c3f97c34690f61b57c4615ce187482d.tar.gz
systemd-systemctl-native: Use += instead of :append
There is no reason to use EXTRA_OEMESON:append when += will do. (From OE-Core rev: d3c754dae42dcd68274711c9da3def3621d55634) Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
-rw-r--r--meta/recipes-core/systemd/systemd-systemctl-native_257.6.bb4
1 files changed, 2 insertions, 2 deletions
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
8 8
9MESON_TARGET = "systemctl:executable" 9MESON_TARGET = "systemctl:executable"
10MESON_INSTALL_TAGS = "systemctl" 10MESON_INSTALL_TAGS = "systemctl"
11EXTRA_OEMESON:append = " -Dlink-systemctl-shared=false" 11EXTRA_OEMESON += "-Dlink-systemctl-shared=false"
12 12
13# Systemctl is supposed to operate on target, but the target sysroot is not 13# Systemctl is supposed to operate on target, but the target sysroot is not
14# determined at run-time, but rather set during configure 14# determined at run-time, but rather set during configure
15# More details are here https://github.com/systemd/systemd/issues/35897#issuecomment-2665405887 15# More details are here https://github.com/systemd/systemd/issues/35897#issuecomment-2665405887
16EXTRA_OEMESON:append = " --sysconfdir ${sysconfdir_native}" 16EXTRA_OEMESON += "--sysconfdir ${sysconfdir_native}"