ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/build_utils/install.py
(Generate patch)

Comparing ray/build_utils/install.py (file contents):
Revision 1.1 by schorsch, Tue Oct 21 19:27:28 2003 UTC vs.
Revision 1.2 by schorsch, Thu Oct 21 15:47:12 2004 UTC

# 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 +

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines