From 98c0b8456271e776c99ca908269e78e3c7b676af Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Tue, 5 Feb 2002 21:40:40 +0000 Subject: [PATCH] No longer need this ant wrapper. Use narya/bin/ant. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@935 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- tests/bin/bant | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100755 tests/bin/bant diff --git a/tests/bin/bant b/tests/bin/bant deleted file mode 100755 index cdb644341..000000000 --- a/tests/bin/bant +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/sh -# -# $Id: bant,v 1.3 2002/02/05 20:27:34 mdb Exp $ -# -# Invokes ant with the necessary classpath to build the bundles. - -BINDIR=`dirname $0` - -# add all JAR files in /usr/share/ant/lib/ to CLASSPATH -SYSTEMCP=`echo $JAVA_LIBS/*.jar | tr ' ' ':'` -# add all JAR files in /usr/share/ant/lib/ to CLASSPATH -PROJECTCP=`echo $BINDIR/../../lib/*.jar | tr ' ' ':'` -# also add narya.jar -export CLASSPATH=$BINDIR/../../dist/narya.jar:$PROJECTCP:$SYSTEMCP -# and invoke ant with the passed through targets -ant "$@"