python: Avoid hardcoding the interpreter.
* lang/python/setup.py.in: Avoid hardcoding the interpreter. Signed-off-by: Justus Winter <justus@g10code.com>
This commit is contained in:
parent
b48b852a84
commit
70999d8161
@ -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()]
|
||||
|
Loading…
Reference in New Issue
Block a user