Changeset 96937 in webkit


Ignore:
Timestamp:
Oct 7, 2011 7:56:12 AM (13 years ago)
Author:
podivilov@chromium.org
Message:

Unreviewed, rolling out r96892.
http://trac.webkit.org/changeset/96892
https://bugs.webkit.org/show_bug.cgi?id=69626

it broke windows canary bots (Requested by podivilov on
#webkit).

Patch by Sheriff Bot <webkit.review.bot@gmail.com> on 2011-10-07

  • WebCore.gyp/scripts/rule_binding.py:
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r96935 r96937  
     12011-10-07  Sheriff Bot  <webkit.review.bot@gmail.com>
     2
     3        Unreviewed, rolling out r96892.
     4        http://trac.webkit.org/changeset/96892
     5        https://bugs.webkit.org/show_bug.cgi?id=69626
     6
     7        it broke windows canary bots (Requested by podivilov on
     8        #webkit).
     9
     10        * WebCore.gyp/scripts/rule_binding.py:
     11
    1122011-10-07  Andreas Kling  <kling@webkit.org>
    213
  • trunk/Source/WebCore/WebCore.gyp/scripts/rule_binding.py

    r96892 r96937  
    5050import shlex
    5151import shutil
     52import subprocess
    5253import sys
    5354
     
    124125    command.extend(['--outputDir', cppdir, input])
    125126
    126     # Do it.
    127     os.execvp('perl', command)
     127    # Do it. check_call is new in 2.5, so simulate its behavior with call and
     128    # assert.
     129    returnCode = subprocess.call(command)
     130    assert returnCode == 0
     131
     132    return returnCode
    128133
    129134
    130135if __name__ == '__main__':
    131     main(sys.argv)
     136    sys.exit(main(sys.argv))
Note: See TracChangeset for help on using the changeset viewer.