1
0
mirror of https://github.com/mpv-player/mpv synced 2024-12-11 17:37:23 +00:00
mpv/darwinfixlib.sh

12 lines
249 B
Bash
Raw Normal View History

#!/bin/sh
if [ `uname -s` = 'Darwin' ]; then
echo "Fixing libs with ranlib for Darwin (MacOSX)"
for i in $* ; do
if (echo $i | grep \\.a) >/dev/null 2>&1; then
echo "ranlib $i"
(ranlib $i) >/dev/null 2>&1
fi
done
fi
exit 0