diff options
-rwxr-xr-x | configure.py | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/configure.py b/configure.py index 2a8280061..b35871c8b 100755 --- a/configure.py +++ b/configure.py @@ -540,8 +540,9 @@ class ModuleInfo(object): self.uses_tr1 = (True if self.uses_tr1 == 'yes' else False) if self.comment != []: - logging.info('Module comment for ' + self.basename + ' - ' + - ' '.join(self.comment)) + self.comment = ' '.join(self.comment) + else: + self.comment = None def sources(self): return self.source @@ -1228,6 +1229,10 @@ def choose_modules_to_use(modules, archinfo, options): logging.debug('Loading modules %s', ' '.join(sorted(to_load))) + for mod in to_load: + if modules[mod].comment: + logging.info('%s: %s' % (mod, modules[mod].comment)) + return [modules[mod] for mod in to_load] """ |