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.3 by schorsch, Sat Mar 5 00:40:25 2016 UTC

# Line 34 | Line 34 | def install_manfiles(env):
34          env.Append(RAD_MANINSTALL=il)
35  
36  
37 + def install_script(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