targets/toolchain_gcc.py
changeset 1777 c46ec818bdd7
parent 1767 c74815729afd
child 1831 56b48961cc68
--- a/targets/toolchain_gcc.py	Sat Aug 19 16:45:37 2017 +0300
+++ b/targets/toolchain_gcc.py	Sat Aug 19 17:04:31 2017 +0300
@@ -185,10 +185,10 @@
                         self.CTRInstance.logger.write("   [CC]  "+bn+" -> "+obn+"\n")
 
                         status, result, err_result = ProcessLogger(
-                               self.CTRInstance.logger,
-                               "\"%s\" -c \"%s\" -o \"%s\" %s %s" %
-                                   (self.compiler, CFile, objectfilename, Builder_CFLAGS, CFLAGS)
-                               ).spin()
+                            self.CTRInstance.logger,
+                            "\"%s\" -c \"%s\" -o \"%s\" %s %s" %
+                            (self.compiler, CFile, objectfilename, Builder_CFLAGS, CFLAGS)
+                        ).spin()
 
                         if status:
                             self.srcmd5.pop(bn)
@@ -214,13 +214,13 @@
             self.CTRInstance.logger.write("   [CC]  " + ' '.join(obns)+" -> " + self.exe + "\n")
 
             status, result, err_result = ProcessLogger(
-                   self.CTRInstance.logger,
-                   "\"%s\" %s -o \"%s\" %s" %
-                       (self.linker,
-                        listobjstring,
-                        self.exe_path,
-                        ALLldflags)
-                   ).spin()
+                self.CTRInstance.logger,
+                "\"%s\" %s -o \"%s\" %s" %
+                (self.linker,
+                 listobjstring,
+                 self.exe_path,
+                 ALLldflags)
+            ).spin()
 
             if status:
                 return False