Changeset 20247

Show
Ignore:
Timestamp:
09/30/08 09:22:46 (5 years ago)
Author:
tokuhirom
Message:

r28318@gp: tokuhirom | 2008-09-29 08:22:36 +0900
better scons file

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/cplusplus/llv8call/branches/gdome/ext/SConscript

    r20166 r20247  
    2828 
    2929        srcfile = os.path.join(d, dllfname(d)) 
    30         dstfile = os.path.join(destdir, dllfname(d)) 
    3130        if os.access(srcfile, os.R_OK): 
    32             print "cp %s %s" % (srcfile, dstfile) 
    33             shutil.copyfile(srcfile, dstfile) 
     31            env.Install(destdir, srcfile) 
    3432