runjava needs to use dist/lib for its classpath, not lib/

This commit is contained in:
Jonathan Le Plastrier
2006-10-12 22:43:14 +00:00
parent 64c44bdc7c
commit 57220404af
+1 -1
View File
@@ -55,7 +55,7 @@ if (defined $libpath) {
my $classpath = "-classpath $root/dist/classes";
# add zip and jar files from our lib/ directory and the system lib/ directory
my @dirs = ( "$root/lib", $ENV{"JAVA_LIBS"} );
my @dirs = ( "$root/dist/lib", $ENV{"JAVA_LIBS"} );
foreach $dir (@dirs) {
next unless (defined $dir);
if (opendir(DIR, $dir)) {