view darwinfixlib.sh @ 8082:d630c877c05c

1) "-ovc divx4" doesn't encode using XViD anymore 2) added options and defaults to "-xvidencopts" following ve_xvid.c modifications
author rguyom
date Sun, 03 Nov 2002 14:49:45 +0000
parents 184f37880f90
children
line wrap: on
line source

#!/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