diff options
Diffstat (limited to '')
-rwxr-xr-x | lang/python/setup.py.in | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/lang/python/setup.py.in b/lang/python/setup.py.in index a524c95c..4477e096 100755 --- a/lang/python/setup.py.in +++ b/lang/python/setup.py.in @@ -43,16 +43,21 @@ if os.path.exists("../../src/gpgme-config"): IN_TREE_BUILD=1, ) +if hasattr(subprocess, "DEVNULL"): + devnull = subprocess.DEVNULL +else: + devnull = open(os.devnull, "w") + try: subprocess.check_call([gpg_error_config, '--version'], - stdout=subprocess.DEVNULL) + stdout=devnull) except: sys.exit("Could not find gpg-error-config. " + "Please install the libgpg-error development package.") try: subprocess.check_call([gpgme_config, '--version'], - stdout=subprocess.DEVNULL) + stdout=devnull) except: sys.exit("Could not find gpgme-config. " + "Please install the libgpgme development package.") |