view darwinfixlib.sh @ 8932:967a1d1f70c6

The following patch adds a call to srand() with the current time at the start of main(). It makees "-shuffle" to works as expected. Krister Lagerstrom <krister@kmlager.com>
author arpi
date Sun, 12 Jan 2003 22:40:51 +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