From 6fd3248855f8a4c8edee2fe005a80c4e5c87e7f1 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 b5abe611bc..7b3a535778 100644 --- a/setup.py +++ b/setup.py @@ -1872,6 +1872,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. -- 2.40.0