Changeset 204979 in webkit


Ignore:
Timestamp:
Aug 25, 2016 11:39:22 AM (8 years ago)
Author:
Csaba Osztrogonác
Message:

generate-js-builtins.py should generate platform independent files
https://bugs.webkit.org/show_bug.cgi?id=161196

Reviewed by Mark Lam.

  • Scripts/generate-js-builtins.py: Files should be processed in fixed order.
Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r204958 r204979  
     12016-08-25  Csaba Osztrogonác  <ossy@webkit.org>
     2
     3        generate-js-builtins.py should generate platform independent files
     4        https://bugs.webkit.org/show_bug.cgi?id=161196
     5
     6        Reviewed by Mark Lam.
     7
     8        * Scripts/generate-js-builtins.py: Files should be processed in fixed order.
     9
    1102016-08-25  Caio Lima  <ticaiolima@gmail.com>
    211
  • trunk/Source/JavaScriptCore/Scripts/generate-js-builtins.py

    r203554 r204979  
    147147            input_filepaths.append(os.path.join(arg_options.input_directory, filepath))
    148148
    149     input_filepaths = filter(lambda name: fnmatch.fnmatch(name, '*.js'), input_filepaths)
     149    input_filepaths = sorted(filter(lambda name: fnmatch.fnmatch(name, '*.js'), input_filepaths))
    150150
    151151    options = {
Note: See TracChangeset for help on using the changeset viewer.