| # | Line 34 | Line 34 | def install_manfiles(env): | |
|---|---|---|
| 34 | env.Append(RAD_MANINSTALL=il) | |
| 35 | ||
| 36 | ||
| 37 | + | def install_cshscript(target, source, env): |
| 38 | + | for t,s in map(None,target,source): |
| 39 | + | sf = open(str(s), 'r') |
| 40 | + | tf = open(str(t), 'w') |
| 41 | + | tf.write(sf.read()) |
| 42 | + | os.chmod(str(t), 00755) |
| 43 | + | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines (old) |
| > | Changed lines (new) |