view darwinfixlib.sh @ 9562:6cf694df50b3

Use -frames 0 instead of hardcoded "goto goto_next_file;" (Suggested by "Per Winkvist <per.winkvist@telia.com>" in private mail)
author ranma
date Mon, 10 Mar 2003 00:46:40 +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