#!/bin/csh
# FILE: checkhost		MAKE SURE USER IS ON THE CORRECT HOST
#
# SYNOPSIS:	checkhost machine-type
#
# this script is used by Makefile.sun3.
#====================================================================
if (`arch` != $1) then
	echo "You must be on a $1 to do this"
	exit (1)
endif
