Changeset 219494 in webkit


Ignore:
Timestamp:
Jul 13, 2017 8:36:38 PM (7 years ago)
Author:
matthew_hanson@apple.com
Message:

Fix the Mac CMake build.

Unreviewed build fix.

Fix the Mac CMake build after r219488 broke it. r219488 erroneously updated
the variable name DERIVED_SOURCES_WEBKITLEGACY_DIR to DERIVED_SOURCES_WEBKIT_LEGACY_DIR
without updating subsequent users of that variable.

  • Source/cmake/WebKitFS.cmake:

Rename DERIVED_SOURCES_WEBKIT_LEGACY_DIR back to DERIVED_SOURCES_WEBKITLEGACY_DIR.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r219488 r219494  
     12017-07-13  Matthew Hanson  <matthew_hanson@apple.com>
     2
     3        Fix the Mac CMake build.
     4
     5        Unreviewed build fix.
     6
     7        Fix the Mac CMake build after r219488 broke it. r219488 erroneously updated
     8        the variable name DERIVED_SOURCES_WEBKITLEGACY_DIR to DERIVED_SOURCES_WEBKIT_LEGACY_DIR
     9        without updating subsequent users of that variable.
     10
     11        * Source/cmake/WebKitFS.cmake:
     12        Rename DERIVED_SOURCES_WEBKIT_LEGACY_DIR back to DERIVED_SOURCES_WEBKITLEGACY_DIR.
     13
    1142017-07-13  Matthew Hanson  <matthew_hanson@apple.com>
    215
  • trunk/Source/cmake/WebKitFS.cmake

    r219488 r219494  
    3030set(DERIVED_SOURCES_JAVASCRIPTCORE_DIR "${CMAKE_BINARY_DIR}/DerivedSources/JavaScriptCore")
    3131set(DERIVED_SOURCES_WEBCORE_DIR "${CMAKE_BINARY_DIR}/DerivedSources/WebCore")
    32 set(DERIVED_SOURCES_WEBKIT_LEGACY_DIR "${CMAKE_BINARY_DIR}/DerivedSources/WebKitLegacy")
     32set(DERIVED_SOURCES_WEBKITLEGACY_DIR "${CMAKE_BINARY_DIR}/DerivedSources/WebKitLegacy")
    3333set(DERIVED_SOURCES_WEBKIT_DIR "${CMAKE_BINARY_DIR}/DerivedSources/WebKit")
    3434set(DERIVED_SOURCES_WEBKIT2_DIR "${CMAKE_BINARY_DIR}/DerivedSources/WebKit2")
     
    5454
    5555if (ENABLE_WEBKIT_LEGACY)
    56     file(MAKE_DIRECTORY ${DERIVED_SOURCES_WEBKIT_LEGACY_DIR})
     56    file(MAKE_DIRECTORY ${DERIVED_SOURCES_WEBKITLEGACY_DIR})
    5757    file(MAKE_DIRECTORY ${DERIVED_SOURCES_WEBKIT_DIR})
    5858endif ()
Note: See TracChangeset for help on using the changeset viewer.