summaryrefslogtreecommitdiff
path: root/debian/patches/0001-Force-Python-3-detection.patch
blob: 828025a632f3a32a084a5c37ebc6f942d928b507 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
From: Gard Spreemann <gspreemann@gmail.com>
Date: Fri, 15 Jun 2018 13:17:30 +0200
Subject: Force Python 3 detection.

---
 cmake/modules/FindCython.cmake | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/cmake/modules/FindCython.cmake b/cmake/modules/FindCython.cmake
index 04aed1f..f3a5b7b 100644
--- a/cmake/modules/FindCython.cmake
+++ b/cmake/modules/FindCython.cmake
@@ -24,16 +24,16 @@
 
 # Use the Cython executable that lives next to the Python executable
 # if it is a local installation.
-find_package( PythonInterp )
+find_package( PythonInterp 3 )
 if( PYTHONINTERP_FOUND )
   get_filename_component( _python_path ${PYTHON_EXECUTABLE} PATH )
   find_program( CYTHON_EXECUTABLE
-    NAMES cython cython.bat cython3
+    NAMES cython3
     HINTS ${_python_path}
     )
 else()
   find_program( CYTHON_EXECUTABLE
-    NAMES cython cython.bat cython3
+    NAMES cython3
     )
 endif()