Correct the csrc rapresentation
[bertos.git] / wizard / bertos_utils.py
index e6b301831a3b03157fb1cce9a5ba0242fd05e3f5..1066f034e4c7f9a66aebdc9c709d410877f85697 100644 (file)
@@ -106,7 +106,7 @@ def csrcGenerator(projectInfo):
             for tag in projectInfo.info("CPU_INFOS")["CPU_TAGS"]:
                 for filename, path in findDefinitions(module + "_" + tag + ".c", projectInfo):
                     files.append(path + "/" + filename)
-    csrc = " \\\n\t".join(files)
+    csrc = " \\\n\t".join(files) + " \\"
     return csrc
     
 def getSystemPath():