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/mem/ruby/SConscript | |
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/mem/ruby/SConscript')
-rw-r--r-- | src/mem/ruby/SConscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mem/ruby/SConscript b/src/mem/ruby/SConscript index d52383d09..64dd83bb0 100644 --- a/src/mem/ruby/SConscript +++ b/src/mem/ruby/SConscript @@ -40,7 +40,7 @@ Import('*') if env['TARGET_ISA'] == 'no': Return() -if not env['RUBY']: +if env['PROTOCOL'] == 'None': Return() def do_embed_text(target, source, env): |