View Single Post
  #7 (permalink)  
Old December 11th, 2005
WimeLire
Guest
 
Posts: n/a
Default

Quote:
Why is /opt/jre1.5.0_04/bin in your path
To be failsafe you'll want to edit the gui/run script (after each upgrade) as follows:

#!/bin/sh -
set -a
cd /.../limewire/gui
JAVA_HOME=/usr/java
PATH=${JAVA_HOME}/bin:${PATH}

CLASSPATH=...
PATH=${PATH}:../lib/native
java ...

Replacing the (...) with your installation's path.
Reply With Quote