From 357a5c8661da74244a0d787a6d7186ec1743c694 Mon Sep 17 00:00:00 2001 From: Mitch Watrous Date: Fri, 15 Apr 2011 09:06:01 -0700 Subject: [PATCH] Print enabled modules list at end of waf configure --- wscript | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wscript b/wscript index 3b1d8db3d..3cfbaaa4c 100644 --- a/wscript +++ b/wscript @@ -463,6 +463,10 @@ def configure(conf): status = 'not enabled (%s)' % reason_not_enabled print "%-30s: %s" % (caption, status) + # Print all of the enabled modules without the "ns3-" in their name. + print + print 'Enabled modules =', str([mod[len('ns3-'):] for mod in conf.env['NS3_ENABLED_MODULES']]) + print class SuidBuildTask(Task.TaskBase): """task that makes a binary Suid @@ -610,7 +614,6 @@ def build(bld): changed = True env['NS3_ENABLED_MODULES'] = modules - #print "Modules to build:", modules # If tests are being built, then set the list of the enabled # module test libraries.