Changeset 219494 in webkit
- Timestamp:
- Jul 13, 2017, 8:36:38 PM (8 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ChangeLog
r219488 r219494 1 2017-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 1 14 2017-07-13 Matthew Hanson <matthew_hanson@apple.com> 2 15 -
trunk/Source/cmake/WebKitFS.cmake
r219488 r219494 30 30 set(DERIVED_SOURCES_JAVASCRIPTCORE_DIR "${CMAKE_BINARY_DIR}/DerivedSources/JavaScriptCore") 31 31 set(DERIVED_SOURCES_WEBCORE_DIR "${CMAKE_BINARY_DIR}/DerivedSources/WebCore") 32 set(DERIVED_SOURCES_WEBKIT _LEGACY_DIR "${CMAKE_BINARY_DIR}/DerivedSources/WebKitLegacy")32 set(DERIVED_SOURCES_WEBKITLEGACY_DIR "${CMAKE_BINARY_DIR}/DerivedSources/WebKitLegacy") 33 33 set(DERIVED_SOURCES_WEBKIT_DIR "${CMAKE_BINARY_DIR}/DerivedSources/WebKit") 34 34 set(DERIVED_SOURCES_WEBKIT2_DIR "${CMAKE_BINARY_DIR}/DerivedSources/WebKit2") … … 54 54 55 55 if (ENABLE_WEBKIT_LEGACY) 56 file(MAKE_DIRECTORY ${DERIVED_SOURCES_WEBKIT _LEGACY_DIR})56 file(MAKE_DIRECTORY ${DERIVED_SOURCES_WEBKITLEGACY_DIR}) 57 57 file(MAKE_DIRECTORY ${DERIVED_SOURCES_WEBKIT_DIR}) 58 58 endif ()
Note:
See TracChangeset
for help on using the changeset viewer.