Changeset 1135 for trunk/python/SConscript
- Timestamp:
- 08/14/06 15:59:40 (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/python/SConscript
r1122 r1135 2 2 3 3 # import root environment 4 Import( "env" , "SGlob")4 Import( "env") 5 5 myenv = env.Copy() 6 6 7 7 # gather python files 8 pys = SGlob("*.py")8 pys = myenv.SGlob("*.py") 9 9 pymods = [] 10 10 for p in pys: 11 myenv.Install(myenv[" dist_dir"],p)11 myenv.Install(myenv["stage_dir"],p) 12 12
Note:
See TracChangeset
for help on using the changeset viewer.