diff options
author | Nilay Vaish <nilay@cs.wisc.edu> | 2011-08-08 10:50:13 -0500 |
---|---|---|
committer | Nilay Vaish <nilay@cs.wisc.edu> | 2011-08-08 10:50:13 -0500 |
commit | 821dfc12892ee841916d9aab411f2db7937ba7c4 (patch) | |
tree | 490ba41acbd7712c5950a8ed7a863a240b650247 /src/cpu/testers/rubytest | |
parent | 5c0e6e6092bd532d861445c735fb5eba865f999d (diff) | |
download | gem5-821dfc12892ee841916d9aab411f2db7937ba7c4.tar.xz |
BuildEnv: Eliminate RUBY as build environment variable
This patch replaces RUBY with PROTOCOL in all the SConscript files as
the environment variable that decides whether or not certain components
of the simulator are compiled.
Diffstat (limited to 'src/cpu/testers/rubytest')
-rw-r--r-- | src/cpu/testers/rubytest/SConscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpu/testers/rubytest/SConscript b/src/cpu/testers/rubytest/SConscript index 1b65932e7..70a4f480d 100644 --- a/src/cpu/testers/rubytest/SConscript +++ b/src/cpu/testers/rubytest/SConscript @@ -35,7 +35,7 @@ Import('*') # When this dependency is removed, the ruby tester should be compiled # independently from Ruby # -if not env['RUBY']: +if env['PROTOCOL'] == 'None': Return() SimObject('RubyTester.py') |