Skip to content

Commit

Permalink
Merge pull request #24 from elvisdukaj/edukaj/bugfix/fix_build_on_macos
Browse files Browse the repository at this point in the history
bugfix: on macos libtoolize is called glibtoolize
  • Loading branch information
sharkwouter authored Jan 31, 2025
2 parents 3c9aa25 + d8b46c4 commit 1233942
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion depends/check-dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,11 @@ check_program cmake
check_program gcc
check_program g++

check_program libtoolize
if [ "$(uname)" != "Darwin" ]; then
check_program libtoolize
else
check_program glibtoolize
fi

if [ ${#missing_depends[@]} -ne 0 ]; then
echo "Couldn't find dependencies:"
Expand Down

0 comments on commit 1233942

Please sign in to comment.