#!/bin/sh
set -e

# Specify how we will call the Java compiler.
if [ -z "$JAVAC" ]; then
	JAVAC=/usr/bin/javac
fi

# Run jythonc.
export JAVAC
export CALLED_FROM_JYTHONC=1
/usr/bin/jython /usr/share/jython/Tools/jythonc/jythonc.py "$@"
