diff -r aaa5396e6291 -r d749366de873 SConstruct --- a/SConstruct Sat Jul 16 04:25:07 2011 -0700 +++ b/SConstruct Sat Jul 16 04:25:32 2011 -0700 @@ -833,13 +833,8 @@ 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.