Issue 1537 - batched_cc /Fo option requires a trailing path separator

This commit is contained in:
Thomas Nagy 2015-02-24 17:50:01 +01:00
parent c4e25382cd
commit b9e3d25918
No known key found for this signature in database
GPG Key ID: 67A565EDFDF90E64
1 changed files with 1 additions and 1 deletions

View File

@ -126,7 +126,7 @@ def hook(cls_type):
def fix_path(tsk):
if self.env.CC_NAME == 'msvc':
tsk.env.append_unique('CXX_TGT_F_BATCHED', '/Fo%s' % outdir.abspath())
tsk.env.append_unique('CXX_TGT_F_BATCHED', '/Fo%s\\' % outdir.abspath())
if not node.parent in self.masters:
m = self.masters[node.parent] = self.master = self.create_task('batch')