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
This commit is contained in:
Walter Korman
2002-05-08 23:04:07 +00:00
parent f0ebe247e4
commit eb270593d1
+2 -2
View File
@@ -1,6 +1,6 @@
#!/bin/sh #!/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 # Invokes our desired version of ant with all of our jar files in the
# classpath. # classpath.
@@ -39,7 +39,7 @@ SYSTEMCP=`echo $JAVA_LIBS/*.jar | tr ' ' ':'`
PROJECTCP=`echo $BINDIR/../lib/*.jar | tr ' ' ':'` PROJECTCP=`echo $BINDIR/../lib/*.jar | tr ' ' ':'`
# also the project jar file # also the project jar file
PROJECTJAR=`echo $BINDIR/../dist/*.jar` PROJECTJAR=`echo $BINDIR/../dist/*.jar | tr ' ' ':'`
if [ "$CLASSPATH" ] ; then if [ "$CLASSPATH" ] ; then
CLASSPATH="$PROJECTJAR:$PROJECTCP:$SYSTEMCP:$CLASSPATH" CLASSPATH="$PROJECTJAR:$PROJECTCP:$SYSTEMCP:$CLASSPATH"