No chmod value for symlink_as at this time

This commit is contained in:
Thomas Nagy 2016-01-02 01:10:08 +01:00
parent 017d7a6257
commit e36420d68b
No known key found for this signature in database
GPG Key ID: 67A565EDFDF90E64
1 changed files with 2 additions and 1 deletions

View File

@ -1112,7 +1112,8 @@ class InstallContext(BuildContext):
"""
if Utils.is_win32 and win32_install:
# symlinks *cannot* work on win32, install the file instead
return self.install_as(dest, src, env=env, chmod=chmod, cwd=cwd, add=add, postpone=postpone, task=task)
# TODO chmod value?
return self.install_as(dest, src, env=env, cwd=cwd, add=add, postpone=postpone, task=task)
assert(dest)
tsk = inst(env=env or self.env)
tsk.bld = self