diff mbox series

[7/8] ci: fix zchunk installation

Message ID 20250104214824.975961-8-oss@braunwarth.dev
State Accepted
Headers show
Series CI setup optimizations | expand

Commit Message

Daniel Braunwarth Jan. 4, 2025, 9:48 p.m. UTC
Without this fix zchunk is installed to /usr/local and /usr/lib64.

At least for the Ubuntu 22.04 container this prevented running
test-configs.sh.

Signed-off-by: Daniel Braunwarth <oss@braunwarth.dev>
---
 ci/install-src-deps.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/ci/install-src-deps.sh b/ci/install-src-deps.sh
index 302d703..bfef070 100755
--- a/ci/install-src-deps.sh
+++ b/ci/install-src-deps.sh
@@ -56,7 +56,7 @@  install_zchunk() {
     rm -rf /tmp/zchunk
     git clone https://github.com/zchunk/zchunk /tmp/zchunk
     cd /tmp/zchunk
-    meson setup build
+    meson setup --prefix /usr --libdir lib build
     meson compile -C build
     $_SUDO meson install -C build
 }