Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 1775ac9

Browse files
committedFeb 1, 2025·
If brew is not installed, use /usr prefix
1 parent 47403cf commit 1775ac9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎depends/install_libavif.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ version=1.1.1
77

88
pushd libavif-$version
99

10-
if [ $(uname) == "Darwin" ]; then
10+
if [ $(uname) == "Darwin" ] && [ -x "$(command -v brew)" ]; then
1111
PREFIX=$(brew --prefix)
1212
else
1313
PREFIX=/usr

0 commit comments

Comments
 (0)
Please sign in to comment.