From 70999d81618b3d3ae6b61a43be2ce703ad284275 Mon Sep 17 00:00:00 2001 From: Justus Winter Date: Mon, 12 Sep 2016 16:19:07 +0200 Subject: [PATCH] python: Avoid hardcoding the interpreter. * lang/python/setup.py.in: Avoid hardcoding the interpreter. Signed-off-by: Justus Winter --- lang/python/setup.py.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lang/python/setup.py.in b/lang/python/setup.py.in index 4477e096..22035cbe 100755 --- a/lang/python/setup.py.in +++ b/lang/python/setup.py.in @@ -88,9 +88,9 @@ if not os.path.exists(gpg_error_h): print("Building pyme3 using {} and {}.".format(gpgme_h, gpg_error_h)) # Cleanup gpgme.h from deprecated functions and typedefs. -subprocess.check_call(["python3", "gpgme-h-clean.py", gpgme_h], +subprocess.check_call([sys.executable, "gpgme-h-clean.py", gpgme_h], stdout=open("gpgme.h", "w")) -subprocess.check_call(["python3", "gpgme-h-clean.py", gpg_error_h], +subprocess.check_call([sys.executable, "gpgme-h-clean.py", gpg_error_h], stdout=open("errors.i", "w")) include_dirs = [os.getcwd()]