On Wed, 21 Oct 1998 20:58:22 -0700, Dustin Preisler wrote:
>new to Linux, attempting to
>install and run the Blackdown
>Java..
>get a:
>/usr/lib.java/jdk116_v5/bin/checkVershions:
>{isGreaterOrEqual: command not
>found
>error...
>thats when i try to do a
>javac
>or
>javac -g
>on any .java file...
>can anyone help me out
>thanks..
You can hand-patch that file or you can:
--- bin/checkVersions.orig Fri Oct 9 15:13:34 1998
+++ bin/checkVersions Fri Oct 9 15:13:45 1998
@@ -103,8 +103,8 @@
# 5.4.33 & 1.9.6 seem to do it too
if isGreaterOrEqual "$libdlVers" 1.9.6 ||
- {isGreaterOrEqual "$libcVers" 1.5.44 &&
- isGreaterOrEqual "$libdlVers" 1.9.9}
+ ( isGreaterOrEqual "$libcVers" 1.5.44 &&
+ isGreaterOrEqual "$libdlVers" 1.9.9 )
then
# supplied libraries are not needed
return 1
which is the difference in checkVersions that support
both BASH 1.x and BASH 2.x syntax. (Sorry about the problem
but my only LIBC5 system has BASH 2.x...)
This should be in the v5a version of the JDK 1.1.6 JDK.
Michael Sinz -- Director of Research & Development, NextBus Inc.
mailto:[EMAIL PROTECTED] --------- http://www.nextbus.com
My place on the web ---> http://www.users.fast.net/~michael_sinz