From 7dd06e1dc038ffb8c765a024910f24be21fb2c8f Mon Sep 17 00:00:00 2001 From: Christian Heimes Date: Thu, 6 Sep 2012 18:02:49 +0200 Subject: [PATCH] Issue #15591: run ctypes' configure in quiet mode when setup.py runs silently --- setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.py b/setup.py index 65acb99f7c1..10ce79e29c2 100644 --- a/setup.py +++ b/setup.py @@ -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.