Angus Leeming <[EMAIL PROTECTED]> writes:

| However, I'm convinced that the configure file is wrong too. Why are 
| you using '=' (a string test) when you should be using -eq (an 
| integer test)?
>
| -if test ! $num = 0 ; then
| +if test $num -ne 0 ; then

does that matter?

I'd even use 

    if [ x$num != x0 ] ; then

since that also works if $num is ""

-- 
        Lgb

Reply via email to