#!/bin/sh -e

if [ -r /usr/share/sablevm/classlib.pth ]; then
	jikes -q -bootclasspath `cat /usr/share/sablevm/classlib.pth` "$@"
else
	echo 
	echo "-----------   ERROR   -----------"
	echo "Cannot find/read SableVM classes. Please report."
	echo
	exit 1
fi
