Changeset 1431 for trunk/scons


Ignore:
Timestamp:
08/28/08 13:53:43 (16 years ago)
Author:
Malte Marquarding
Message:

work with scons >= 0.98

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/scons/quietinstall.py

    r1184 r1431  
    11import SCons
     2
     3try:
     4    from SCons.Environment import installFunc
     5except ImportError:
     6    from SCons.Tool.install import installFunc
    27
    38def no_output(target, source, env):
     
    2732   
    2833    quietinstaller_builder = env.Builder(
    29         action = env.Action(SCons.Environment.installFunc, no_output),
     34        action = env.Action(installFunc, no_output),
    3035        multi=1
    3136    )
Note: See TracChangeset for help on using the changeset viewer.