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/recorder | |
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/recorder')
-rw-r--r-- | src/mem/ruby/recorder/SConscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mem/ruby/recorder/SConscript b/src/mem/ruby/recorder/SConscript index ef4f4ef05..035f896a4 100644 --- a/src/mem/ruby/recorder/SConscript +++ b/src/mem/ruby/recorder/SConscript @@ -30,7 +30,7 @@ Import('*') -if not env['RUBY']: +if env['PROTOCOL'] == 'None': Return() SimObject('Tracer.py') |