Correct the csrc rapresentation
authorduplo <duplo@38d2e660-2303-0410-9eaa-f027e97ec537>
Mon, 23 Feb 2009 19:09:30 +0000 (19:09 +0000)
committerduplo <duplo@38d2e660-2303-0410-9eaa-f027e97ec537>
Mon, 23 Feb 2009 19:09:30 +0000 (19:09 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@2381 38d2e660-2303-0410-9eaa-f027e97ec537

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():