Author: Ronny Pfannschmidt <[email protected]>
Branch:
Changeset: r893:138bd8080167
Date: 2012-08-24 19:23 +0200
http://bitbucket.org/cffi/cffi/changeset/138bd8080167/
Log: remove the hiding of pkg-config errors in setup.py, should fix issue
#21
diff --git a/setup.py b/setup.py
--- a/setup.py
+++ b/setup.py
@@ -16,7 +16,7 @@
def _ask_pkg_config(resultlist, option, result_prefix=''):
try:
p = subprocess.Popen(['pkg-config', option, 'libffi'],
- stdout=subprocess.PIPE, stderr=open('/dev/null',
'w'))
+ stdout=subprocess.PIPE)
except OSError as e:
if e.errno != errno.ENOENT:
raise
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit