Re: Install Question

2002-01-11 Thread Gianugo Rabellino
David McInnis wrote: > Can anyone explain this to me. I have set the JAVA_HOME variable but it > is not working. It is making me crazy. Quick and silly question: did you export JAVA_HOME? I spent a couple of hours on a Solaris machine to remind me that plain sh (unlike bash) doesn't automa

Re: Install Question

2002-01-11 Thread Joseph Jupin
need to set it in your script. you probably have an overriding definition like: #!/usr/bin/sh JAVA_HOME="" ... This will override your outside declaration. Just remove that variable or tell it export from the outside - or better yet, change it to: JAVA_HOME=/blah/blah/blah... you get the i

Re: Install Question

2002-01-11 Thread David McInnis
Bingo. Thanks, David On Fri, 2002-01-11 at 09:06, Gianugo Rabellino wrote: > David McInnis wrote: > > > Can anyone explain this to me. I have set the JAVA_HOME variable but it > > is not working. It is making me crazy. > > > Quick and silly question: did you export JAVA_HOME? I spent a

Re: Install Question

2002-01-11 Thread Gianugo Rabellino
David McInnis wrote: > Can anyone explain this to me. I have set the JAVA_HOME variable but it > is not working. It is making me crazy. Quick and silly question: did you export JAVA_HOME? I spent a couple of hours on a Solaris machine to remind me that plain sh (unlike bash) doesn't automa

Re: Install Question

2002-01-11 Thread Berin Loritsch
David McInnis wrote: > Can anyone explain this to me. I have set the JAVA_HOME variable but it > is not working. It is making me crazy. This is an issue with JDK 1.4. I can't remember how I got around it, but using other JDKs works better. > > > Here is my JAVA_HOME info (This is the p