From 927b60820227bcee5bf9c98f8c4dd98c5f0bc74e Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 16 Mar 2019 13:04:42 +0100 Subject: Automatically display configuration header --- extras/autowaf.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'extras') diff --git a/extras/autowaf.py b/extras/autowaf.py index 4b013c8..7ea26da 100644 --- a/extras/autowaf.py +++ b/extras/autowaf.py @@ -104,6 +104,10 @@ class ConfigureContext(Configure.ConfigurationContext): super(ConfigureContext, self).__init__(**kwargs) self.run_env = ConfigSet.ConfigSet() + def pre_recurse(self, node): + display_header('Configuring %s' % node.parent.srcpath()) + super(ConfigureContext, self).pre_recurse(node) + def store(self): self.env.AUTOWAF_RUN_ENV = self.run_env.get_merged_dict() super(ConfigureContext, self).store() -- cgit v1.2.1