diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2011-03-03 23:54:31 -0800 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2011-03-03 23:54:31 -0800 |
commit | fa448129b1cb7a03ef00361d316ac2d7c38e8091 (patch) | |
tree | 97366bbd8d814c1403c9b9a7acc11c53c319abb2 /util | |
parent | 880edb0b592f8b6fb88b7614e05cc48cc1599846 (diff) | |
download | gem5-fa448129b1cb7a03ef00361d316ac2d7c38e8091.tar.xz |
SCons: Turn some scons variables into command line options.
Diffstat (limited to 'util')
-rwxr-xr-x | util/regress | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/regress b/util/regress index 27d09c0c3..34e58d6d7 100755 --- a/util/regress +++ b/util/regress @@ -133,7 +133,7 @@ if options.jobs != 1: if options.keep_going: scons_opts += ' -k' -cmd = 'scons IGNORE_STYLE=True %s %s' % (scons_opts, ' '.join(targets)) +cmd = 'scons --ignore-style %s %s' % (scons_opts, ' '.join(targets)) if options.no_exec: print cmd else: |