From: Dmitry Shachnev Date: Wed, 16 Aug 2017 08:29:33 +0000 (+0300) Subject: Fixed the configuration tests' handling of disabled features. X-Git-Tag: archive/raspbian/5.9+dfsg-2+rpi1^2~1 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=8bfeb3cdfd7117d912cbe09b1d34f40b7d15ba67;p=pyqt5.git Fixed the configuration tests' handling of disabled features. Origin: upstream, changeset 1a7f9ba28fed Gbp-Pq: Name disabled_features.diff --- diff --git a/configure.py b/configure.py index b24866d..8bfdd1a 100644 --- a/configure.py +++ b/configure.py @@ -2168,10 +2168,8 @@ int main(int, char **) if source is None: for disabled in run_test_program(mname, test, verbose): if disabled: - inform("Disabled %s features: %s" % (mname, - ', '.join(disabled))) - - target_config.pyqt_disabled_features.extend(disabled) + inform("Disabled %s feature: %s" % (mname, disabled)) + target_config.pyqt_disabled_features.append(disabled) # Include the module in the build. target_config.pyqt_modules.append(mname)