Changeset 82855 in webkit


Ignore:
Timestamp:
Apr 4, 2011 12:33:42 PM (13 years ago)
Author:
Adam Roben
Message:

Delete mt.dep files when doing a clean build due to .vsprops file changes

Apparently this is yet another file that Visual Studio can't figure out it needs to rebuild.

Fixes <http://webkit.org/b/57777> r82850 failed to build on Windows Debug (Build)

Reviewed by Brian Weinstein.

(main): Added dep to the list of extensions we look for when choosing files to delete.

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r82849 r82855  
     12011-04-04  Adam Roben  <aroben@apple.com>
     2
     3        Delete mt.dep files when doing a clean build due to .vsprops file changes
     4
     5        Apparently this is yet another file that Visual Studio can't figure out it needs to rebuild.
     6
     7        Fixes <http://webkit.org/b/57777> r82850 failed to build on Windows Debug (Build)
     8
     9        Reviewed by Brian Weinstein.
     10
     11        * JavaScriptCore.vcproj/JavaScriptCore/react-to-vsprops-changes.py:
     12        (main): Added dep to the list of extensions we look for when choosing files to delete.
     13
    1142011-04-01  Oliver Hunt  <oliver@apple.com>
    215
  • trunk/Source/JavaScriptCore/JavaScriptCore.vcproj/JavaScriptCore/react-to-vsprops-changes.py

    r80158 r82855  
    2222    # .vsprops files change (even if we touch wtf/Platform.h below), so we delete them to force them
    2323    # to be rebuilt.
    24     for extension in ('manifest', 'pch', 'res'):
     24    for extension in ('dep', 'manifest', 'pch', 'res'):
    2525        for filepath in glob.iglob(os.path.join(obj_directory, '*', '*.%s' % extension)):
    2626            delete_if_older_than(filepath, newest_vsprops_time)
Note: See TracChangeset for help on using the changeset viewer.