diff options
author | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2024-12-16 14:03:01 +0000 |
---|---|---|
committer | Scott Murray <scott.murray@konsulko.com> | 2024-12-19 22:39:59 -0500 |
commit | 17fd501fae2361588f2af72c229d56612cdca40f (patch) | |
tree | e8ce467cd00160482349e7345afe28dc52f785d3 | |
parent | 3b620121541a2bce121ffc0b458e908c5d39fd4e (diff) |
Fix UNPACKDIR for agl-compositor-init-pipewirenext
Change-Id: Ic2980458444c121afb3d2b0f963208b0a44bb4c6
Signed-off-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org>
-rw-r--r-- | meta-agl-core/recipes-graphics/wayland/agl-compositor-init-pipewire.bb | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/meta-agl-core/recipes-graphics/wayland/agl-compositor-init-pipewire.bb b/meta-agl-core/recipes-graphics/wayland/agl-compositor-init-pipewire.bb index f1d73732a..c42cb9793 100644 --- a/meta-agl-core/recipes-graphics/wayland/agl-compositor-init-pipewire.bb +++ b/meta-agl-core/recipes-graphics/wayland/agl-compositor-init-pipewire.bb @@ -12,22 +12,23 @@ SRC_URI = "file://agl-compositor-pipewire.conf \ file://agl-compositor-stream-pipewire.service \ " -S = "${WORKDIR}" +S = "${WORKDIR}/sources" +UNPACKDIR = "${S}" AGL_KVM_REMOTE_OUTPUT_IP ?= "172.16.10.3" AGL_KVM_REMOTE_OUTPUT_PORT ?= "5005" do_install() { sed -i -e "s,@REMOTE_OUTPUT_IP@,${AGL_KVM_REMOTE_OUTPUT_IP},g" \ - ${WORKDIR}/agl-compositor-stream-pipewire.service + ${UNPACKDIR}/agl-compositor-stream-pipewire.service sed -i -e "s,@REMOTE_OUTPUT_PORT@,${AGL_KVM_REMOTE_OUTPUT_PORT},g" \ - ${WORKDIR}/agl-compositor-stream-pipewire.service + ${UNPACKDIR}/agl-compositor-stream-pipewire.service - install -D -p -m0644 ${WORKDIR}/agl-compositor-stream-pipewire.service ${D}${systemd_system_unitdir}/agl-compositor-stream-pipewire.service + install -D -p -m0644 ${UNPACKDIR}/agl-compositor-stream-pipewire.service ${D}${systemd_system_unitdir}/agl-compositor-stream-pipewire.service install -d ${D}${systemd_system_unitdir}/agl-compositor.service.d - install -m644 ${WORKDIR}/agl-compositor-pipewire.conf ${D}/${systemd_system_unitdir}/agl-compositor.service.d/02-agl-compositor.conf + install -m644 ${UNPACKDIR}/agl-compositor-pipewire.conf ${D}/${systemd_system_unitdir}/agl-compositor.service.d/02-agl-compositor.conf } FILES:${PN} += "\ |