From: duplo Date: Thu, 26 Mar 2009 12:02:08 +0000 (+0000) Subject: Use os.path.normpath for normalize the file paths with native separator X-Git-Tag: 2.1.0~242 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=0a132dc62cfb3366acace64e0e8a525d04eb06bd;p=bertos.git Use os.path.normpath for normalize the file paths with native separator git-svn-id: https://src.develer.com/svnoss/bertos/trunk@2440 38d2e660-2303-0410-9eaa-f027e97ec537 --- diff --git a/wizard/bertos_utils.py b/wizard/bertos_utils.py index 8e175dbe..80551941 100644 --- a/wizard/bertos_utils.py +++ b/wizard/bertos_utils.py @@ -141,13 +141,13 @@ def csrcGenerator(project_info): asm_files |= set(dependencySFiles) for file in module_files: if not harvard or "harvard" not in information or information["harvard"] == "both": - csrc.append(file) + csrc.append(os.path.normpath(file)) if harvard and "harvard" in information: - pcsrc.append(file) + pcsrc.append(os.path.normpath(file)) for file in dependency_files: - csrc.append(file) + csrc.append(os.path.normpath(file)) for file in asm_files: - asrc.append(file) + asrc.append(os.path.normpath(file)) csrc = " \\\n\t".join(csrc) + " \\" pcsrc = " \\\n\t".join(pcsrc) + " \\" asrc = " \\\n\t".join(asrc) + " \\"