From 45c2a9567f3ee8051fd8254631548abbb164ea60 Mon Sep 17 00:00:00 2001 From: Xavier Claessens Date: Tue, 22 Mar 2022 13:29:14 -0400 Subject: [PATCH] Debian renamed cython to cython3, support both --- mesonbuild/compilers/detect.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mesonbuild/compilers/detect.py b/mesonbuild/compilers/detect.py index 36956f916..359382f24 100644 --- a/mesonbuild/compilers/detect.py +++ b/mesonbuild/compilers/detect.py @@ -183,7 +183,7 @@ defaults['cuda'] = ['nvcc'] defaults['rust'] = ['rustc'] defaults['swift'] = ['swiftc'] defaults['vala'] = ['valac'] -defaults['cython'] = ['cython'] +defaults['cython'] = ['cython', 'cython3'] # Official name is cython, but Debian renamed it to cython3. defaults['static_linker'] = ['ar', 'gar'] defaults['strip'] = ['strip'] defaults['vs_static_linker'] = ['lib']