diff options
-rwxr-xr-x | SConstruct | 7 | ||||
-rw-r--r-- | src/mem/ruby/SConscript | 3 |
2 files changed, 3 insertions, 7 deletions
diff --git a/SConstruct b/SConstruct index 6074675c8..5699cda73 100755 --- a/SConstruct +++ b/SConstruct @@ -835,13 +835,8 @@ def build_config_file(target, source, env): f.close() return None -# Generate the message to be printed when building the config file. -def build_config_file_string(target, source, env): - (variable, value) = [s.get_contents() for s in source] - return "Defining %s as %s in %s." % (variable, value, target[0]) - # Combine the two functions into a scons Action object. -config_action = Action(build_config_file, build_config_file_string) +config_action = MakeAction(build_config_file, Transform("CONFIG H", 2)) # The emitter munges the source & target node lists to reflect what # we're really doing. diff --git a/src/mem/ruby/SConscript b/src/mem/ruby/SConscript index 3c9c02fe2..d52383d09 100644 --- a/src/mem/ruby/SConscript +++ b/src/mem/ruby/SConscript @@ -86,7 +86,8 @@ def MakeIncludeAction(target, source, env): def MakeInclude(source): target = generated_dir.File(basename(source)) - env.Command(target, source, MakeIncludeAction) + include_action = MakeAction(MakeIncludeAction, Transform("MAKE INC", 1)) + env.Command(target, source, include_action) MakeInclude('slicc_interface/AbstractEntry.hh') MakeInclude('slicc_interface/AbstractCacheEntry.hh') |