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.
This commit is contained in:
Nilay Vaish
2011-08-08 10:50:13 -05:00
parent 5c0e6e6092
commit 821dfc1289
24 changed files with 23 additions and 28 deletions

View File

@@ -288,7 +288,7 @@ else:
'simple-atomic-mp', 'simple-timing-mp', 'o3-timing-mp',
'inorder-timing', 'rubytest']
if env['RUBY']:
if env['PROTOCOL'] != 'None':
if env['PROTOCOL'] == 'MI_example':
configs += [c + "-ruby" for c in configs]
else: