Changeset 1431
- Timestamp:
- 08/28/08 13:53:43 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/scons/quietinstall.py
r1184 r1431 1 1 import SCons 2 3 try: 4 from SCons.Environment import installFunc 5 except ImportError: 6 from SCons.Tool.install import installFunc 2 7 3 8 def no_output(target, source, env): … … 27 32 28 33 quietinstaller_builder = env.Builder( 29 action = env.Action( SCons.Environment.installFunc, no_output),34 action = env.Action(installFunc, no_output), 30 35 multi=1 31 36 )
Note:
See TracChangeset
for help on using the changeset viewer.