summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGilles Dubochet <gilles.dubochet@epfl.ch>2006-01-30 13:17:58 +0000
committerGilles Dubochet <gilles.dubochet@epfl.ch>2006-01-30 13:17:58 +0000
commit03c4d117bda836efba2017cd9497709f676371e4 (patch)
treec5ba4330a7c784ed8f7bab76e7680c02c9be4076
parent38b3c42eba09b4196f68507c1b74c8e8d669080f (diff)
downloadscala-03c4d117bda836efba2017cd9497709f676371e4.tar.gz
scala-03c4d117bda836efba2017cd9497709f676371e4.tar.bz2
scala-03c4d117bda836efba2017cd9497709f676371e4.zip
A $PREFIX was still lurking around: it is gone ...
A $PREFIX was still lurking around: it is gone now.
-rw-r--r--src/compiler/scala/tools/ant/templates/tool-unix.tmpl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/scala/tools/ant/templates/tool-unix.tmpl b/src/compiler/scala/tools/ant/templates/tool-unix.tmpl
index 86cb8d95ec..579e95a225 100644
--- a/src/compiler/scala/tools/ant/templates/tool-unix.tmpl
+++ b/src/compiler/scala/tools/ant/templates/tool-unix.tmpl
@@ -33,7 +33,7 @@ SCALA_HOME=`cd "$SCALA_HOME"; pwd`;
CLASSPATH=@classpath@
if [ "$CLASSPATH" == "" ] ; then
- for jar in `ls $PREFIX/lib/*.jar` ; do
+ for jar in `ls $SCALA_HOME/lib/*.jar` ; do
CLASSPATH=$CLASSPATH:$jar
done
CLASSPATH=${CLASSPATH:1}