Package: java-wrappers Version: 0.1.15 Severity: normal Tags: patch Hi,
please add support for default-java and make it the first choice when the 'all' flavor is requested. A patch is attached. Thanks, Torsten
--- jvm-list.sh.orig 2010-05-04 06:31:09.000000000 +0200 +++ jvm-list.sh 2010-05-04 06:32:30.000000000 +0200 @@ -22,6 +22,9 @@ # They can also be used for the JAVA_FLAVOR environment variable, see # java-wrappers(7). +# default runtime +__jvm_default="/usr/lib/jvm/default-java" + # Sun runtimes __jvm_sun4="/usr/lib/j2*1.4-sun" __jvm_sun5="/usr/lib/jvm/java-1.5.0-sun /usr/lib/j2*1.5-sun" @@ -61,6 +64,6 @@ # All JVMs -__jvm_all="/usr/lib/jvm/* $__jvm_ibm $__jvm_sun4 $__jvm_sablevm $__jvm_kaffe" +__jvm_all="$__jvm_default /usr/lib/jvm/* $__jvm_ibm $__jvm_sun4 $__jvm_sablevm $__jvm_kaffe" -# Probably here should come a few meaningful global aliases. \ No newline at end of file +# Probably here should come a few meaningful global aliases.