#!/bin/sh

rel_num=`/usr/bin/uname -r` 

if [ "$rel_num" != "5.10" ]; then

   cat <<EOF
 
   This patch can only be installed on a Solaris 5.10 system.
   Aborting installation ...
  
EOF

  exit 1

fi
