- Use SUB_FILES to configure the launcher shell script - Forbid build with JDK 1.5 as I can't find a workaround (yet) - Use ${JAVALIBDIR} for JAR dependencies - Don't try to mkdir ${JAVAJARDIR} as it has been part of mtree for several years now
5 lines
189 B
Bash
5 lines
189 B
Bash
#!/bin/sh
|
|
# $FreeBSD$
|
|
|
|
export CLASSPATH="`%%LOCALBASE%%/bin/classpath`:%%JAVAJARDIR%%/xalan.jar"
|
|
JAVA_VERSION="%%JAVA_VERSION%%" "%%LOCALBASE%%/bin/java" org.apache.xalan.xslt.Process "$@"
|