#!/bin/sh
#	$Id: crtln.sh,v 1.4 2000/02/05 23:53:54 ca Exp $
# create some symbolic links if necessary
for i in *.so.*
do
  if test -f $i
  then
    F=`echo $i | sed -e 's/\.so\..*//'`
    SO=$F.so
    if test -f $SO
    then
      :
    else
      ln -s $i $SO
    fi
  fi
done
exit 0

