소스 검색

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>
Peter Kjellerstedt 1 개월 전
부모
커밋
ef043f337c
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      meta/recipes-core/systemd/systemd-systemctl-native_257.6.bb

+ 2 - 2
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}"