I am trying to set the JAVA_HOME path in Ubuntu from the .bashrc file I currently have something like
export JAVA_HOME=/usr/local/jdk1.6.0_24
But I want to also add the servlet libraries in the Tomcat folder to the path. I tried doing this:
export JAVA_HOME=/usr/local/jdk1.6.0_24,/usr/local/tomcat/lib
But that just broke the JAVA_HOME path. How can I add the Tomcat path to the original JAVA_HOME path?
Thanks, Alex