
1 Aug
2005
1 Aug
'05
5:24 p.m.
The mkconfig script does not execute properly in my cygwin environment, but is fine under linux.
Changing line 35 solves the problem:
from: if [ -z "$6" -o "$6" == "NULL" ] ; then to: if [ -z "$6" -o "$6" = "NULL" ] ; then
The extra "=" is the culprit -- although I don't quite understand what's happening.
Does this require a patch? Or is my cygwin environment screwed up?
BTW: the bash version is the same in both environments.
Regards, --Scott