Scons: Make some Action objects fit the abreviated output format.

This commit is contained in:
Gabe Black
2011-08-02 03:22:11 -07:00
parent 1b49c56679
commit 1c68c32cc9
2 changed files with 3 additions and 7 deletions

View File

@@ -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')