Repeat the build output directory and the build profile in the configure report.
authorPeter D. Barnes, Jr. <barnes26@llnl.gov>
Fri, 31 Jan 2014 14:57:58 -0800
changeset 10604 eed0cb486e3f
parent 10603 04f76b16053c
child 10605 7c03f417e2f6
Repeat the build output directory and the build profile in the configure report.
wscript
--- a/wscript	Fri Jan 31 13:11:18 2014 -0800
+++ b/wscript	Fri Jan 31 14:57:58 2014 -0800
@@ -524,6 +524,13 @@
 
     # Write a summary of optional features status
     print "---- Summary of optional NS-3 features:"
+    print "%-30s: %s%s%s" % ("Build profile", Logs.colors('GREEN'),
+                             Options.options.build_profile, Logs.colors('NORMAL'))
+    bld = wutils.bld
+    print "%-30s: %s%s%s" % ("Build directory", Logs.colors('GREEN'),
+                             Context.out_dir, Logs.colors('NORMAL'))
+    
+    
     for (name, caption, was_enabled, reason_not_enabled) in conf.env['NS3_OPTIONAL_FEATURES']:
         if was_enabled:
             status = 'enabled'