#!/bin/csh -f
#
#
if ( $?OSM_PATH != 1 ) then
	set DIR=`pwd`
	echo ""
	echo "Each Passport user's environment must be set correctly."
	echo "For C-shell users, add the following to your .cshrc:"
	echo ""
	echo "setenv OSM_PATH $DIR"
        echo "set path = ("'$path'" $DIR)"
	echo ""
	echo "For Bourne or Korn shell users, add the following to your .profile:"
	echo ""
	echo "OSM_PATH=$DIR"
	echo "PATH="'$PATH'":$DIR"
	echo "export OSM_PATH PATH"
	echo ""
	echo "and source your .profile with the following command:"
	echo ""
	echo '$ . $HOME/.profile'
	echo ""
endif
