summaryrefslogtreecommitdiff
path: root/debian/command-scripts
diff options
context:
space:
mode:
authorLex Spoon <lex@lexspoon.org>2006-11-29 11:13:46 +0000
committerLex Spoon <lex@lexspoon.org>2006-11-29 11:13:46 +0000
commit962905168622ec7d316c82740adbef1230a78ab9 (patch)
treeeb9b167a58e6fea66cb8f3be8f13fdbd1ec14b30 /debian/command-scripts
parentbc94a338c03d0fe35423efb8be138c80a7db61ef (diff)
downloadscala-962905168622ec7d316c82740adbef1230a78ab9.tar.gz
scala-962905168622ec7d316c82740adbef1230a78ab9.tar.bz2
scala-962905168622ec7d316c82740adbef1230a78ab9.zip
put the Scala jar's on the JVM bootstrapping cl...
put the Scala jar's on the JVM bootstrapping classpath
Diffstat (limited to 'debian/command-scripts')
-rwxr-xr-xdebian/command-scripts/scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/debian/command-scripts/scala b/debian/command-scripts/scala
index 05ad2a62a7..df5b1d9b7b 100755
--- a/debian/command-scripts/scala
+++ b/debian/command-scripts/scala
@@ -1,9 +1,9 @@
-#!/bin/sh
+#/bin/sh
JAVA_DIR=/usr/share/java
LIB_CLASSPATH=$JAVA_DIR/scala-library.jar:$JAVA_DIR/scala-compiler.jar
exec ${JAVACMD:=java} -Xmx256M -Xms16M \
- -classpath $LIB_CLASSPATH -Dscala.boot.class.path=$SCALAC_CLASSPATH \
+ -Xbootclasspath/a:$LIB_CLASSPATH \
scala.tools.nsc.MainGenericRunner \
"$@"