Skip to content

Commit 0c0ff7c

Browse files
committed
Removed use of sudo from libavif and raqm install scripts
1 parent 88c2c11 commit 0c0ff7c

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.ci/install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,10 @@ pushd depends && ./install_webp.sh && popd
5151
pushd depends && ./install_imagequant.sh && popd
5252

5353
# raqm
54-
pushd depends && ./install_raqm.sh && popd
54+
pushd depends && sudo ./install_raqm.sh && popd
5555

5656
# libavif
57-
pushd depends && ./install_libavif.sh && popd
57+
pushd depends && sudo ./install_libavif.sh && popd
5858

5959
# extra test images
6060
pushd depends && ./install_extra_test_images.sh && popd

depends/install_libavif.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,6 @@ cmake \
5959
"${LIBAVIF_CMAKE_FLAGS[@]}" \
6060
.
6161

62-
sudo make install
62+
make install
6363

6464
popd

depends/install_raqm.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ archive=libraqm-0.10.3
88

99
pushd $archive
1010

11-
meson build --prefix=/usr && sudo ninja -C build install
11+
meson build --prefix=/usr && ninja -C build install
1212

1313
popd

0 commit comments

Comments
 (0)