From eb270593d1ffb9f32f7051ac63aa46c0ec8bb5b3 Mon Sep 17 00:00:00 2001 From: Walter Korman Date: Wed, 8 May 2002 23:04:07 +0000 Subject: [PATCH] Need to trim whitespace from the project jar files. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1350 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- bin/ant | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/ant b/bin/ant index dbbff03af..8f9db951d 100755 --- a/bin/ant +++ b/bin/ant @@ -1,6 +1,6 @@ #!/bin/sh # -# $Id: ant,v 1.2 2002/04/14 01:32:21 mdb Exp $ +# $Id: ant,v 1.3 2002/05/08 23:04:07 shaper Exp $ # # Invokes our desired version of ant with all of our jar files in the # classpath. @@ -39,7 +39,7 @@ SYSTEMCP=`echo $JAVA_LIBS/*.jar | tr ' ' ':'` PROJECTCP=`echo $BINDIR/../lib/*.jar | tr ' ' ':'` # also the project jar file -PROJECTJAR=`echo $BINDIR/../dist/*.jar` +PROJECTJAR=`echo $BINDIR/../dist/*.jar | tr ' ' ':'` if [ "$CLASSPATH" ] ; then CLASSPATH="$PROJECTJAR:$PROJECTCP:$SYSTEMCP:$CLASSPATH"