From a28d13419d772965fd5761d5a0e5a8b22e619cf7 Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Thu, 6 Feb 2003 23:57:50 +0000 Subject: [PATCH] Since we have narya/dist/classes in our classpath, we don't need any prebuilt narya .jar files. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@2248 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- tests/bin/runjava | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/bin/runjava b/tests/bin/runjava index 10b4ac93b..d9b6f2efe 100755 --- a/tests/bin/runjava +++ b/tests/bin/runjava @@ -64,7 +64,9 @@ foreach $dir (@dirs) { next unless (defined $dir); if (opendir(DIR, $dir)) { foreach $lib (grep { /.(zip|jar)/ && -f "$dir/$_" } readdir(DIR)) { - $classpath .= ":$dir/$lib"; + # skip narya-*.jar because we have the narya build directory + # in our classpath + $classpath .= ":$dir/$lib" unless $lib =~ /narya/; } closedir DIR; }