wok annotate ecj/stuff/ecj.sh.part @ rev 23753

updated xine-lib, xine-lib-dev and xine fonts again (1.2.9 -> 1.2.10)
author Hans-G?nter Theisgen
date Fri May 01 16:24:55 2020 +0100 (2020-05-01)
parents
children
rev   line source
rcx@3797 1
rcx@3797 2 if [ -n "$ECJ_VERSION" ] ; then
rcx@3797 3 ECJ_JAR="ecj-$ECJ_VERSION.jar"
rcx@3797 4 else
rcx@3797 5 ECJ_JAR="ecj.jar"
rcx@3797 6 fi
rcx@3797 7
rcx@3797 8 if [ -z "$JAVA" ] ; then
rcx@3797 9 if [ -n "$(which java)" ] ; then
rcx@3797 10 JAVA=java
rcx@3797 11 elif [ -n "$(which jamvm)" ] ; then
rcx@3797 12 JAVA=jamvm
rcx@3797 13 elif [ -n "$(which gij)" ] ; then
rcx@3797 14 JAVA=gij
rcx@3797 15 elif [ -n "$(which kaffe)" ] ; then
rcx@3797 16 JAVA=kaffe
rcx@3797 17 else
rcx@3797 18 echo "Java interpreter not found"
rcx@3797 19 exit 1
rcx@3797 20 fi
rcx@3797 21 fi
rcx@3797 22
rcx@3797 23 $JAVA -cp /usr/share/java/$ECJ_JAR org.eclipse.jdt.internal.compiler.batch.Main "$@"