bdc49e85aa
- Use exec(1) to launch the JVM - Set CLASSPATH so that it only contains the required JAR files Submitted by: mi [1] (a long time ago on freebsd-java@)
4 lines
207 B
Bash
4 lines
207 B
Bash
#!/bin/sh
|
|
# $FreeBSD$
|
|
|
|
JAVA_VERSION="%%JAVA_VERSION%%" exec "%%LOCALBASE%%/bin/java" -cp "%%JAVALIBDIR%%/xml-apis.jar:%%JAVALIBDIR/xercesImpl.jar:%%JAVAJARDIR%%/xalan.jar" org.apache.xalan.xslt.Process "$@"
|