#! /bin/csh -f

# Set up the possible paths for the real install script.
set files = (admin/install admin/install. 'admin/install.;1' \
             ADMIN/INSTALL ADMIN/INSTALL. 'ADMIN/INSTALL.;1')

# Execute the first file found.
foreach file ($files)
  if (-x $file) exec $file $argv:q
end

# If we get here, then none of the files were found.
echo ""
echo "The real install script could not be found.  It is either missing or"
echo "you do not have execute permission for it.  The install script should"
echo "exist as one of the following files:"
echo ""
foreach file ($files)
  echo "   $file"
end
echo ""
