Title: [243441] trunk
Revision
243441
Author
[email protected]
Date
2019-03-25 10:57:13 -0700 (Mon, 25 Mar 2019)

Log Message

[WTF] Fix typo when forcing WTF_CPU_X86
https://bugs.webkit.org/show_bug.cgi?id=196204

Patch by Xan López <[email protected]> on 2019-03-25
Reviewed by Michael Catanzaro.

Fix a typo when setting the WTF_CPU variable for X86.

* CMakeLists.txt:

Modified Paths

Diff

Modified: trunk/CMakeLists.txt (243440 => 243441)


--- trunk/CMakeLists.txt	2019-03-25 16:11:31 UTC (rev 243440)
+++ trunk/CMakeLists.txt	2019-03-25 17:57:13 UTC (rev 243441)
@@ -98,7 +98,7 @@
     # binaries without setting the build up as a crosscompilation,
     # which is the only way to modify CMAKE_SYSTEM_PROCESSOR.
     if (FORCE_32BIT)
-        set(WTF_CPU X86 1)
+        set(WTF_CPU_X86 1)
     else ()
         set(WTF_CPU_X86_64 1)
     endif ()

Modified: trunk/ChangeLog (243440 => 243441)


--- trunk/ChangeLog	2019-03-25 16:11:31 UTC (rev 243440)
+++ trunk/ChangeLog	2019-03-25 17:57:13 UTC (rev 243441)
@@ -1,3 +1,14 @@
+2019-03-25  Xan López  <[email protected]>
+
+        [WTF] Fix typo when forcing WTF_CPU_X86
+        https://bugs.webkit.org/show_bug.cgi?id=196204
+
+        Reviewed by Michael Catanzaro.
+
+        Fix a typo when setting the WTF_CPU variable for X86.
+
+        * CMakeLists.txt:
+
 2019-03-23  Carlos Garcia Campos  <[email protected]>
 
         [GTK] Remove build time dependency on Geoclue2
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to