commit | 6d1fb5aa85fd69099f1e7787d6c7b3c4b117de3a | [log] [tgz] |
---|---|---|
author | Christian Heimes <christian@cheimes.de> | Thu Sep 06 18:03:32 2012 +0200 |
committer | Christian Heimes <christian@cheimes.de> | Thu Sep 06 18:03:32 2012 +0200 |
tree | e5a02b8805fac11055b161ee73cc5b546fd0595b | |
parent | d9c1bf7f1f4d5436956c3629ed97cec507463951 [diff] | |
parent | 7dd06e1dc038ffb8c765a024910f24be21fb2c8f [diff] |
Issue #15591: run ctypes' configure in quiet mode when setup.py runs silently
diff --git a/setup.py b/setup.py index 9ddf2e9..d60967a 100644 --- a/setup.py +++ b/setup.py
@@ -1788,6 +1788,8 @@ mkpath(ffi_builddir) config_args = [arg for arg in sysconfig.get_config_var("CONFIG_ARGS").split() if (('--host=' in arg) or ('--build=' in arg))] + 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.