#!/bin/sh
#
# This is for the benefit of the make file, to prevent multiple makes
# from occuring, thus wiping out files previously saved away.
#
there=`grep "^bit::" /etc/passwd | wc -l`
there=`expr "$there" `
if [ $there -ge 1 ] 
then
  echo "Bit was previously installed, aborting make."
  exit 1
else
  exit 0
fi
