[Webkit-unassigned] [Bug 15813] New: Incorrect handling of findstr results in *.vcproj

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Sat Nov 3 00:27:33 PDT 2007


http://bugs.webkit.org/show_bug.cgi?id=15813

           Summary: Incorrect handling of findstr results in *.vcproj
           Product: WebKit
           Version: 523.x+ (nightly)
          Platform: PC
        OS/Version: Windows Vista
            Status: UNCONFIRMED
          Severity: Trivial
          Priority: P2
         Component: Tools / Tests
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: hnakamur at gmail.com


Although I was able to build the WebKit successfully, I found a trivial bug in
WebKit/win/WebKit.vcproj/WebKit.vcproj and
WebCore/WebCore.vcproj/WebCore.vcproj.

Exit code of findstr is 0 when found and 1 when not found. So an correct
handling of the result is:

echo foo | findstr foo
if errorlevel 1 (echo not found) else echo found

or

echo foo | findstr foo
if %errorlevel% equ 0 (echo found) else echo not found

I made a patch and will attach it.


-- 
Configure bugmail: http://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.



More information about the webkit-unassigned mailing list