1
mirror of https://github.com/mpv-player/mpv synced 2024-09-16 22:19:59 +02: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