| List: | General Discussion | « Previous MessageNext Message » | |
| From: | Dan Nelson | Date: | May 26 2001 10:00pm |
| Subject: | Re: mysql_config broken | ||
| View as plain text | |||
In the last episode of the mysql list (May 26), Michael Widenius said: > >> 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 > > I have now fixed this for the upcoming 3.23.39. Thanks! The more general fix is to move the '!' after the 'test' command. '!' is not a shell command; it's a test operator. if test ! $# -gt 0; then usage; fi -- Dan Nelson dnelson@stripped
| Thread | ||
|---|---|---|
| • mysql_config broken | Michael Widenius | 26 May |
| • Re: mysql_config broken | Dan Nelson | 27 May |
