From 57220404af2d59c9e732e0383e106c6de703e63a Mon Sep 17 00:00:00 2001 From: Jonathan Le Plastrier Date: Thu, 12 Oct 2006 22:43:14 +0000 Subject: [PATCH] runjava needs to use dist/lib for its classpath, not lib/ --- bin/runjava | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/runjava b/bin/runjava index 3a397e3..2c2b51a 100755 --- a/bin/runjava +++ b/bin/runjava @@ -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)) {