summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRosen Penev <rosenp@gmail.com>2020-07-21 21:04:17 (GMT)
committerRosen Penev <rosenp@gmail.com>2020-07-21 22:27:22 (GMT)
commit4ebc792cab645d4fef2dbad3611a67daf4d10150 (patch)
treeb945849f877273fdd8d2dac9300fcb82094776a3
parent48f9ecfb3436877b014d22280d36e7644f867140 (diff)
downloadlz4-4ebc792cab645d4fef2dbad3611a67daf4d10150.zip
lz4-4ebc792cab645d4fef2dbad3611a67daf4d10150.tar.gz
lz4-4ebc792cab645d4fef2dbad3611a67daf4d10150.tar.bz2
meson: remove build requirement for distutils
Tested on a default installation of Debian 10. Same as https://github.com/facebook/zstd/pull/2197 Signed-off-by: Rosen Penev <rosenp@gmail.com>
-rw-r--r--contrib/meson/meson/meson.build5
1 files changed, 2 insertions, 3 deletions
diff --git a/contrib/meson/meson/meson.build b/contrib/meson/meson/meson.build
index 387e7bd..b278b7c 100644
--- a/contrib/meson/meson/meson.build
+++ b/contrib/meson/meson/meson.build
@@ -9,7 +9,6 @@
cc = meson.get_compiler('c')
pkgconfig = import('pkgconfig')
-python3 = import('python').find_installation()
c_std = get_option('c_std')
default_library = get_option('default_library')
@@ -28,8 +27,8 @@ compiler_msvc = 'msvc'
lz4_version = meson.project_version()
lz4_h_file = join_paths(meson.current_source_dir(), '../../../lib/lz4.h')
-GetLz4LibraryVersion_py = files('GetLz4LibraryVersion.py')
-r = run_command(python3, GetLz4LibraryVersion_py, lz4_h_file)
+GetLz4LibraryVersion_py = find_program('GetLz4LibraryVersion.py', native : true)
+r = run_command(GetLz4LibraryVersion_py, lz4_h_file)
if r.returncode() == 0
lz4_version = r.stdout().strip()
message('Project version is now: @0@'.format(lz4_version))