From 9cbdb7b5043f5be2eb3be1774a92d53d829ad67c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Thu, 21 Mar 2019 13:31:57 +0000 Subject: [PATCH] meson: use new 'python' module instead of deprecated 'python3' one --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 6d8f1f8613..52f2a881a6 100644 --- a/meson.build +++ b/meson.build @@ -146,5 +146,5 @@ if not get_option('examples').disabled() subdir('tests') endif -python3 = import('python3').find_python() +python3 = import('python').find_installation() run_command(python3, '-c', 'import shutil; shutil.copy("hooks/pre-commit.hook", ".git/hooks/pre-commit")')