From dc498fd6550ca7c7accb0c2a3888fa1a212d43cd Mon Sep 17 00:00:00 2001 From: Antonio Cunei Date: Thu, 16 Jul 2009 19:30:18 +0000 Subject: Scalac was failing if the path to the distribution contained whitespaces. This simple change fixes that. --- test/partest | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/partest') diff --git a/test/partest b/test/partest index c6eb434d75..f4217d60c1 100755 --- a/test/partest +++ b/test/partest @@ -45,7 +45,7 @@ fi EXT_CLASSPATH="" if [ -z "$EXT_CLASSPATH" ] ; then if [ -f "$SCALA_HOME/lib/scala-partest.jar" ] ; then - for ext in `ls -d "$SCALA_HOME"/lib/*` ; do + for ext in "$SCALA_HOME"/lib/* ; do if [ -z "$EXT_CLASSPATH" ] ; then EXT_CLASSPATH="$ext" else -- cgit v1.2.3