Title: [264012] trunk
- Revision
- 264012
- Author
- [email protected]
- Date
- 2020-07-07 01:03:42 -0700 (Tue, 07 Jul 2020)
Log 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.
Modified Paths
Diff
Modified: trunk/ChangeLog (264011 => 264012)
--- trunk/ChangeLog 2020-07-07 07:21:16 UTC (rev 264011)
+++ trunk/ChangeLog 2020-07-07 08:03:42 UTC (rev 264012)
@@ -1,3 +1,13 @@
+2020-07-07 Adrian Perez de Castro <[email protected]>
+
+ [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.
+
2020-07-04 Sergio Villar Senin <[email protected]>
[Flatpak SDK] Require OpenXR 1.0.9
Modified: trunk/Source/cmake/FindWOFF2.cmake (264011 => 264012)
--- trunk/Source/cmake/FindWOFF2.cmake 2020-07-07 07:21:16 UTC (rev 264011)
+++ trunk/Source/cmake/FindWOFF2.cmake 2020-07-07 08:03:42 UTC (rev 264012)
@@ -59,7 +59,7 @@
find_package(PkgConfig QUIET)
pkg_check_modules(PC_WOFF2 QUIET libwoff2common)
set(WOFF2_COMPILE_OPTIONS ${PC_WOFF2_CFLAGS_OTHER})
-set(WOFF2_VERSION ${PC_WOFF2_CFLAGS_VERSION})
+set(WOFF2_VERSION ${PC_WOFF2_VERSION})
find_library(WOFF2_LIBRARY
NAMES ${WOFF2_NAMES} woff2common
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes