Skip to content

Commit

Permalink
Also check for cython3
Browse files Browse the repository at this point in the history
  • Loading branch information
infirit committed Jan 15, 2023
1 parent fe0d0bf commit cb64e55
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ AC_SUBST([PYGOBJECT_LIBS])

AC_ARG_VAR([CYTHONEXEC], [Cython compiler])
if test "x$CYTHONEXEC" = "x"; then
AC_PATH_PROG([CYTHONEXEC],[cython])
AC_PATH_PROGS([CYTHONEXEC],[cython3 cython])
fi
AC_SUBST([CYTHONEXEC])
AC_MSG_CHECKING([for cython executable])
Expand Down
2 changes: 1 addition & 1 deletion module/meson.build
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cython = find_program('cython', required: true)
cython = find_program('cython', 'cython3' ,required: true)

blueman_c = custom_target(
'blueman_c',
Expand Down

0 comments on commit cb64e55

Please sign in to comment.