Oliver Bock - 2001-11-20

In the rv6 bersion, the bump_version shell script contains this line:

if [ $OSTYPE = "cygwin32" ]; then

For this test to operate without error on systems that do not set $OSTYPE (such as the Solaris 2.6 system I am using) it is necessary to put quotes around $OSTYPE, like this:

if [ "$OSTYPE" = "cygwin32" ]; then