From 8bfeb3cdfd7117d912cbe09b1d34f40b7d15ba67 Mon Sep 17 00:00:00 2001 From: Dmitry Shachnev Date: Wed, 16 Aug 2017 11:29:33 +0300 Subject: [PATCH] Fixed the configuration tests' handling of disabled features. Origin: upstream, changeset 1a7f9ba28fed Gbp-Pq: Name disabled_features.diff --- configure.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) 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) -- 2.30.2