Changeset 275608 in webkit


Ignore:
Timestamp:
Apr 7, 2021 9:26:36 AM (3 years ago)
Author:
don.olmstead@sony.com
Message:

[CMake] Mark _LIBRARY not _LIBRARIES in find modules
https://bugs.webkit.org/show_bug.cgi?id=224283

Reviewed by Michael Catanzaro.

A few find modules are erroniously sending _LIBRARIES to mark_as_advanced rather than
_LIBRARY. The former is created from the _LIBRARY value so it isn't valid at that point.

  • Source/cmake/FindCairo.cmake:
  • Source/cmake/FindFontconfig.cmake:
  • Source/cmake/FindSQLite3.cmake:
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r275601 r275608  
     12021-04-07  Don Olmstead  <don.olmstead@sony.com>
     2
     3        [CMake] Mark _LIBRARY not _LIBRARIES in find modules
     4        https://bugs.webkit.org/show_bug.cgi?id=224283
     5
     6        Reviewed by Michael Catanzaro.
     7
     8        A few find modules are erroniously sending _LIBRARIES to mark_as_advanced rather than
     9        _LIBRARY. The former is created from the _LIBRARY value so it isn't valid at that point.
     10
     11        * Source/cmake/FindCairo.cmake:
     12        * Source/cmake/FindFontconfig.cmake:
     13        * Source/cmake/FindSQLite3.cmake:
     14
    1152021-04-07  Kimmo Kinnunen  <kkinnunen@apple.com>
    216
  • trunk/Source/cmake/FindCairo.cmake

    r258361 r275608  
    102102endif ()
    103103
    104 mark_as_advanced(Cairo_INCLUDE_DIR Cairo_LIBRARIES)
     104mark_as_advanced(Cairo_INCLUDE_DIR Cairo_LIBRARY)
    105105
    106106if (Cairo_FOUND)
  • trunk/Source/cmake/FindFontconfig.cmake

    r274751 r275608  
    104104endif ()
    105105
    106 mark_as_advanced(Fontconfig_INCLUDE_DIR Fontconfig_LIBRARIES)
     106mark_as_advanced(Fontconfig_INCLUDE_DIR Fontconfig_LIBRARY)
    107107
    108108if (Fontconfig_FOUND)
  • trunk/Source/cmake/FindSQLite3.cmake

    r258361 r275608  
    9797endif ()
    9898
    99 mark_as_advanced(SQLite3_INCLUDE_DIR SQLite3_LIBRARIES)
     99mark_as_advanced(SQLite3_INCLUDE_DIR SQLite3_LIBRARY)
    100100
    101101if (SQLite3_FOUND)
Note: See TracChangeset for help on using the changeset viewer.