⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 264012 in webkit


Ignore:
Timestamp:
Jul 7, 2020, 1:03:42 AM (6 years ago)
Author:
Adrian Perez de Castro
Message:

[CMake] Fix typo in version variable assingment in FindWOFF2.cmake
https://bugs.webkit.org/show_bug.cgi?id=214012

Reviewed by Carlos Garcia Campos.

  • Source/cmake/FindWOFF2.cmake: Properly use PC_WOFF2_VERSION as the version

detected from pkg-config.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r263939 r264012  
     12020-07-07  Adrian Perez de Castro  <aperez@igalia.com>
     2
     3        [CMake] Fix typo in version variable assingment in FindWOFF2.cmake
     4        https://bugs.webkit.org/show_bug.cgi?id=214012
     5
     6        Reviewed by Carlos Garcia Campos.
     7
     8        * Source/cmake/FindWOFF2.cmake: Properly use PC_WOFF2_VERSION as the version
     9        detected from pkg-config.
     10
    1112020-07-04  Sergio Villar Senin  <svillar@igalia.com>
    212
  • trunk/Source/cmake/FindWOFF2.cmake

    r263829 r264012  
    6060pkg_check_modules(PC_WOFF2 QUIET libwoff2common)
    6161set(WOFF2_COMPILE_OPTIONS ${PC_WOFF2_CFLAGS_OTHER})
    62 set(WOFF2_VERSION ${PC_WOFF2_CFLAGS_VERSION})
     62set(WOFF2_VERSION ${PC_WOFF2_VERSION})
    6363
    6464find_library(WOFF2_LIBRARY
Note: See TracChangeset for help on using the changeset viewer.