#!/bin/sh
#env CLASSPATH=../imports/classes/junit.jar:./test:. \
#	etc/path-javac "$@"

# JD, 11 May 2009
# We've had trouble if junit.jar is after the Jety jars in the
# classpath, presumably because of something about Jetty's junit.jar.
# The symptom was that javac couldn't fine assertFalse(boolean).

this_dir=`dirname "$0"`
export ix=$this_dir/..

. $this_dir/cpath-setvars

. $this_dir/javac-setvars

cpath=$ix/imports/junit.jar:$ix/test:$cpath

# Now run

env CLASSPATH=$cpath:$CLASSPATH \
	${JAVAC} "$@"
