Changeset 243441 in webkit


Ignore:
Timestamp:
Mar 25, 2019 10:57:13 AM (5 years ago)
Author:
commit-queue@webkit.org
Message:

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

Patch by Xan López <Xan Lopez> on 2019-03-25
Reviewed by Michael Catanzaro.

Fix a typo when setting the WTF_CPU variable for X86.

  • CMakeLists.txt:
Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/CMakeLists.txt

    r242724 r243441  
    9999    # which is the only way to modify CMAKE_SYSTEM_PROCESSOR.
    100100    if (FORCE_32BIT)
    101         set(WTF_CPU X86 1)
     101        set(WTF_CPU_X86 1)
    102102    else ()
    103103        set(WTF_CPU_X86_64 1)
  • trunk/ChangeLog

    r243409 r243441  
     12019-03-25  Xan López  <xan@igalia.com>
     2
     3        [WTF] Fix typo when forcing WTF_CPU_X86
     4        https://bugs.webkit.org/show_bug.cgi?id=196204
     5
     6        Reviewed by Michael Catanzaro.
     7
     8        Fix a typo when setting the WTF_CPU variable for X86.
     9
     10        * CMakeLists.txt:
     11
    1122019-03-23  Carlos Garcia Campos  <cgarcia@igalia.com>
    213
Note: See TracChangeset for help on using the changeset viewer.