changeset eb82084f1f4f in /z/repo/gem5
details: http://repo.gem5.org/gem5?cmd=changeset;node=eb82084f1f4f
description:
        Merged with Gabe's changeset.

diffstat:

 SConstruct |  5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diffs (21 lines):

diff -r 248a1a32e31b -r eb82084f1f4f SConstruct
--- a/SConstruct        Mon Jul 25 18:18:31 2011 -0500
+++ b/SConstruct        Mon Jul 25 18:31:30 2011 -0500
@@ -773,13 +773,16 @@
 
 # Walk the tree and execute all SConsopts scripts that wil add to the
 # above variables
+if not GetOption('verbose'):
+    print "Reading SConsopts"
 for bdir in [ base_dir ] + extras_dir_list:
     if not isdir(bdir):
         print "Error: directory '%s' does not exist" % bdir
         Exit(1)
     for root, dirs, files in os.walk(bdir):
         if 'SConsopts' in files:
-            print "Reading", joinpath(root, 'SConsopts')
+            if GetOption('verbose'):
+                print "Reading", joinpath(root, 'SConsopts')
             SConscript(joinpath(root, 'SConsopts'))
 
 all_isa_list.sort()
_______________________________________________
gem5-dev mailing list
[email protected]
http://m5sim.org/mailman/listinfo/gem5-dev

Reply via email to