view darwinfixlib.sh @ 7596:cfc440385109

We translated Polish manual to version pre8. Was in this a little confusions. We translated version pre7 and I had You already to send it, and here pre8. Much was of work, because manual changed - is now more readable... Adrian Pawlik < imoteph@wp.pl > Konrad Materka < kmaterka@wp.pl >
author gabucino
date Sat, 05 Oct 2002 03:42:00 +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