Skip to content

Commit 45733df

Browse files
diizzyycdunn2001
authored andcommitted
meson: Don't specifically look for python3
Not all distributions provide Python as python3 and as Meson already depends on 3.5+ just use what Meson uses. References: https://mesonbuild.com/Getting-meson.html https://mesonbuild.com/Python-module.html#find_installation Signed-off-by: Daniel Engberg <daniel.engberg.lists@pyret.net>
1 parent 5be07bd commit 45733df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

meson.build

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ if meson.is_subproject() or not get_option('tests')
7373
subdir_done()
7474
endif
7575

76-
python = import('python').find_installation('python3')
76+
python = import('python').find_installation()
7777

7878
jsoncpp_test = executable(
7979
'jsoncpp_test', files([

0 commit comments

Comments
 (0)