diff -r d749366de873 -r e5d8b7c49059 SConstruct --- a/SConstruct Sat Jul 16 04:25:32 2011 -0700 +++ b/SConstruct Sat Jul 16 04:25:44 2011 -0700 @@ -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()