diff options
author | Nilay Vaish <nilay@cs.wisc.edu> | 2011-07-25 18:31:30 -0500 |
---|---|---|
committer | Nilay Vaish <nilay@cs.wisc.edu> | 2011-07-25 18:31:30 -0500 |
commit | fb1f3bae1b35687cd98ec06c9fc291a88b1e546d (patch) | |
tree | 2fcacb670e9c3fd7e43581bd674c14be93d2b4ac | |
parent | ca247a81f0cf42e3ab3d56adc0100c1715ce3d72 (diff) | |
parent | f8ac16b348680b10e5ef80684750008c997e6c07 (diff) | |
download | gem5-fb1f3bae1b35687cd98ec06c9fc291a88b1e546d.tar.xz |
Merged with Gabe's changeset.
-rwxr-xr-x | SConstruct | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct index a5a5aa0f1..8c09e5e4d 100755 --- a/SConstruct +++ b/SConstruct @@ -773,13 +773,16 @@ Export('export_vars') # 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() |