Commit 7dd06e1d authored by Christian Heimes's avatar Christian Heimes

Issue #15591: run ctypes' configure in quiet mode when setup.py runs silently

parent 56cd62c0
......@@ -1675,6 +1675,8 @@ class PyBuildExt(build_ext):
from distutils.dir_util import mkpath
mkpath(ffi_builddir)
config_args = []
if not self.verbose:
config_args.append("-q")
# Pass empty CFLAGS because we'll just append the resulting
# CFLAGS to Python's; -g or -O2 is to be avoided.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment