From 4094b10064e2cde080adfc14a0037e7b7c61ce96 Mon Sep 17 00:00:00 2001 From: duplo Date: Mon, 23 Feb 2009 19:09:30 +0000 Subject: [PATCH] Correct the csrc rapresentation git-svn-id: https://src.develer.com/svnoss/bertos/trunk@2381 38d2e660-2303-0410-9eaa-f027e97ec537 --- wizard/bertos_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(): -- 2.25.1