This is the mail archive of the cygwin-apps@cygwin.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Cygwin needs a splint'er


On Sun, Mar 30, 2003 at 11:33:54PM +0200, Corinna Vinschen wrote:
>     if [ ! -e /bin/lint.exe || ! -e /bin/lint ]; then
> 
>   should be
> 
>     if [ ! -e /bin/lint.exe -o ! -e /bin/lint ]; then

Well, on second thought, shouldn't that be

      if [ ! -e /bin/lint.exe -a ! -e /bin/lint ]; then

?

Corinna

-- 
Corinna Vinschen                  Please, send mails regarding Cygwin to
Cygwin Developer                                mailto:cygwin at cygwin dot com
Red Hat, Inc.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]