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
This commit is contained in:
Michael Bayne
2003-02-06 23:57:50 +00:00
parent a4df939073
commit a28d13419d
+3 -1
View File
@@ -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;
}