Messages in this thread |  | | From | Albert Cahalan <> | Subject | Java and the FSSTND | Date | Fri, 10 May 1996 11:00:34 -0400 (EDT) |
| |
Now that Linux supports Java in the OS, it is a standard part of Linux. As such, it no longer belongs in /usr/local. This bit of code should be changed:
#define _PATH_JAVA "/usr/local/java/bin/java" #define _PATH_APPLET "/usr/local/java/bin/appletviewer" #define _PATH_BASH "/bin/bash"
Something like this would be better:
#define _PATH_JAVA "/usr/bin/java" #define _PATH_APPLET "/usr/bin/appletviewer" #define _PATH_BASH "/bin/bash"
|  |