From: duplo Date: Mon, 23 Feb 2009 19:09:30 +0000 (+0000) Subject: Correct the csrc rapresentation X-Git-Tag: 2.1.0~301 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=4094b10064e2cde080adfc14a0037e7b7c61ce96;p=bertos.git Correct the csrc rapresentation git-svn-id: https://src.develer.com/svnoss/bertos/trunk@2381 38d2e660-2303-0410-9eaa-f027e97ec537 --- diff --git a/wizard/bertos_utils.py b/wizard/bertos_utils.py index e6b30183..1066f034 100644 --- a/wizard/bertos_utils.py +++ b/wizard/bertos_utils.py @@ -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():