We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b0d21b commit 8919da7Copy full SHA for 8919da7
1 file changed
do-compile/apple/bluray.sh
@@ -51,7 +51,14 @@ if [[ -f 'configure' ]]; then
51
echo "reuse configure"
52
else
53
echo "auto generate configure"
54
- ./bootstrap >/dev/null
+ if [[ "$(uname)" == "Darwin" ]]; then
55
+ if command -v glibtoolize > /dev/null; then
56
+ glibtoolize --force --copy
57
+ elif command -v libtoolize > /dev/null; then
58
+ libtoolize --force --copy
59
+ fi
60
61
+ ./bootstrap
62
fi
63
64
echo
0 commit comments