From 879181f36110089a7e2d285b42fab73072cd4ae2 Mon Sep 17 00:00:00 2001 From: Jerome Carretero Date: Fri, 1 Jun 2012 22:17:12 -0400 Subject: [PATCH] cs: indentation fix --- waflib/Tools/cs.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/waflib/Tools/cs.py b/waflib/Tools/cs.py index 35c9aba5..787b8a17 100644 --- a/waflib/Tools/cs.py +++ b/waflib/Tools/cs.py @@ -47,8 +47,8 @@ def apply_cs(self): bintype = getattr(self, 'bintype', self.gen.endswith('.dll') and 'library' or 'exe') self.cs_task = tsk = self.create_task('mcs', cs_nodes, self.path.find_or_declare(self.gen)) tsk.env.CSTYPE = '/target:%s' % bintype - tsk.env.OUT = '/out:%s' % tsk.outputs[0].abspath() - self.env.append_value('CSFLAGS', '/platform:%s' % getattr(self, 'platform', 'anycpu')) + tsk.env.OUT = '/out:%s' % tsk.outputs[0].abspath() + self.env.append_value('CSFLAGS', '/platform:%s' % getattr(self, 'platform', 'anycpu')) inst_to = getattr(self, 'install_path', bintype=='exe' and '${BINDIR}' or '${LIBDIR}') if inst_to: