Hi!
>>>>> "long" == long <[EMAIL PROTECTED]> writes:
>> Description:
long> The mysql_config script contains the following line:
long> if ! test $# -gt 0; then usage; fi
long> which according to my sh man page doesn't work because ! isn't valid and in
long> fact when I run it on Compaq Tru64 4.0F PK3 I receive this:
long> # ./mysql_config
long> ./mysql_config: !: not found
long> Note that 3.23.38 still appears to contain this bug although I did not
long> actually build it.
>> How-To-Repeat:
long> Just run mysql_config on a system where /bin/sh is the Bourne shell.
>> Fix:
long> Change the problem line from:
long> if ! test $# -gt 0; then usage; fi
long> to:
long> if test $# -le 0; then usage; fi
<cut>
I have now fixed this for the upcoming 3.23.39. Thanks!
Regards,
Monty
---------------------------------------------------------------------
Before posting, please check:
http://www.mysql.com/manual.php (the manual)
http://lists.mysql.com/ (the list archive)
To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php