Title: [229269] releases/WebKitGTK/webkit-2.20
Revision
229269
Author
[email protected]
Date
2018-03-05 05:16:40 -0800 (Mon, 05 Mar 2018)

Log Message

Merge r229155 - [CMake] configure failure for aarch64
https://bugs.webkit.org/show_bug.cgi?id=183268

Unreviewed build fix. This failure is caused by a simple typo.

* Source/cmake/OptionsCommon.cmake:

Modified Paths

Diff

Modified: releases/WebKitGTK/webkit-2.20/ChangeLog (229268 => 229269)


--- releases/WebKitGTK/webkit-2.20/ChangeLog	2018-03-05 13:16:34 UTC (rev 229268)
+++ releases/WebKitGTK/webkit-2.20/ChangeLog	2018-03-05 13:16:40 UTC (rev 229269)
@@ -1,3 +1,12 @@
+2018-03-01  Michael Catanzaro  <[email protected]>
+
+        [CMake] configure failure for aarch64
+        https://bugs.webkit.org/show_bug.cgi?id=183268
+
+        Unreviewed build fix. This failure is caused by a simple typo.
+
+        * Source/cmake/OptionsCommon.cmake:
+
 2018-02-21  Michael Catanzaro  <[email protected]>
 
         [GTK] USE_UPOWER causes crashes inside a chroot or on systems with broken dbus/upower

Modified: releases/WebKitGTK/webkit-2.20/Source/cmake/OptionsCommon.cmake (229268 => 229269)


--- releases/WebKitGTK/webkit-2.20/Source/cmake/OptionsCommon.cmake	2018-03-05 13:16:34 UTC (rev 229268)
+++ releases/WebKitGTK/webkit-2.20/Source/cmake/OptionsCommon.cmake	2018-03-05 13:16:40 UTC (rev 229269)
@@ -36,7 +36,7 @@
     if (NOT WTF_CPU_ARM64)
         message(FATAL_ERROR "WTF_CPU_ARM64_CORTEXA53 set without WTF_CPU_ARM64")
     endif ()
-    WEBKIT_PREPEND_GLOBAL_COMPILER_FLAG(-mfix-cortex-a53-835769)
+    WEBKIT_PREPEND_GLOBAL_COMPILER_FLAGS(-mfix-cortex-a53-835769)
 endif ()
 
 EXPOSE_VARIABLE_TO_BUILD(WTF_CPU_ARM64_CORTEXA53)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to