From 26ee11a707ede36c8eb95825dc2af81899ff1315 Mon Sep 17 00:00:00 2001 From: mdb Date: Thu, 12 Dec 2002 07:46:27 +0000 Subject: [PATCH] Don't need native library stuff any longer. git-svn-id: https://samskivert.googlecode.com/svn/trunk@976 6335cc39-0255-0410-8fd6-9bcaacd3b74c --- projects/atlanti/bin/runjava | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/projects/atlanti/bin/runjava b/projects/atlanti/bin/runjava index 2c7c5d63..1d245060 100755 --- a/projects/atlanti/bin/runjava +++ b/projects/atlanti/bin/runjava @@ -34,23 +34,6 @@ if (! -d $jhome) { my $java = "$jhome/bin/java"; my $jlib = "$jhome/lib/classes.zip"; -# determine our machine architecture -my $ostype = `uname -s`; -my $machtype = `uname -m`; -chomp($ostype); -chomp($machtype); -my $arch = "$machtype-$ostype"; - -# add our native libraries to the runtime library path -my $libs = "$root/lib/$arch"; -my $libpath = $ENV{"LD_LIBRARY_PATH"}; - -if (defined $libpath) { - $ENV{"LD_LIBRARY_PATH"} = "$libs:$libpath"; -} else { - $ENV{"LD_LIBRARY_PATH"} = $libs; -} - # put everything in our class path my $classpath = "-classpath $root/dist/classes";