#!/bin/csh
#
# This script checks to see if the  video-specific files are different
#  from the canonical released ones.  -paul 12/06/88
#
# It's just the install/update script with the "n" option added.
#
if ( `whoami` !~ root ) then
	echo "You must run this program as root."
	exit 1
endif
track -F /mit/visual/install.X11/root -W /mit/visual/install.X11 -d -v -n
exit 0
