Changeset 236629 in webkit


Ignore:
Timestamp:
Sep 28, 2018 6:00:37 PM (6 years ago)
Author:
commit-queue@webkit.org
Message:

cmake cannot run if python 2 isn't available
https://bugs.webkit.org/show_bug.cgi?id=190075

Patch by Mike Gorse <mgorse@alum.wpi.edu> on 2018-09-28
Reviewed by Michael Catanzaro.

  • Source/cmake/WebKitCommon.cmake: Set Python_ADDITIONAL_VERSIONS

to 3, so that a python3 binary will be found.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r236617 r236629  
     12018-09-28  Mike Gorse  <mgorse@alum.wpi.edu>
     2
     3        cmake cannot run if python 2 isn't available
     4        https://bugs.webkit.org/show_bug.cgi?id=190075
     5
     6        Reviewed by Michael Catanzaro.
     7
     8        * Source/cmake/WebKitCommon.cmake: Set Python_ADDITIONAL_VERSIONS
     9        to 3, so that a python3 binary will be found.
     10
    1112018-09-28  Yusuke Suzuki  <yusukesuzuki@slowstart.org>
    212
  • trunk/Source/cmake/WebKitCommon.cmake

    r236321 r236629  
    2121    find_package(PerlModules COMPONENTS JSON::PP REQUIRED)
    2222
     23    set(Python_ADDITIONAL_VERSIONS 3)
    2324    find_package(PythonInterp 2.7.0 REQUIRED)
    2425
Note: See TracChangeset for help on using the changeset viewer.