Remove use of sudo from libavif and raqm install scripts (#9231)

This commit is contained in:
Hugo van Kemenade 2025-10-04 11:13:10 +03:00 committed by GitHub
commit 1a1194abe7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 4 additions and 4 deletions

View File

@ -51,10 +51,10 @@ pushd depends && ./install_webp.sh && popd
pushd depends && ./install_imagequant.sh && popd
# raqm
pushd depends && ./install_raqm.sh && popd
pushd depends && sudo ./install_raqm.sh && popd
# libavif
pushd depends && ./install_libavif.sh && popd
pushd depends && sudo ./install_libavif.sh && popd
# extra test images
pushd depends && ./install_extra_test_images.sh && popd

View File

@ -59,6 +59,6 @@ cmake \
"${LIBAVIF_CMAKE_FLAGS[@]}" \
.
sudo make install
make install
popd

View File

@ -8,6 +8,6 @@ archive=libraqm-0.10.3
pushd $archive
meson build --prefix=/usr && sudo ninja -C build install
meson build --prefix=/usr && ninja -C build install
popd