From 19986b952a6ef6789dc1fbc32c7307713e2322ea Mon Sep 17 00:00:00 2001 From: duplo Date: Thu, 26 Mar 2009 09:56:01 +0000 Subject: [PATCH] Correct the bug related to the duplicate inclusion in makefile generation git-svn-id: https://src.develer.com/svnoss/bertos/trunk@2436 38d2e660-2303-0410-9eaa-f027e97ec537 --- wizard/bertos_utils.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/wizard/bertos_utils.py b/wizard/bertos_utils.py index 4a17beb9..ceb82c71 100644 --- a/wizard/bertos_utils.py +++ b/wizard/bertos_utils.py @@ -121,11 +121,11 @@ def csrcGenerator(project_info): pcsrc = [] ## constants to be included at the beginning of the makefile constants = {} - module_files = set([]) - dependency_files = set([]) - ## assembly sources - asm_files = set([]) for module, information in modules.items(): + module_files = set([]) + dependency_files = set([]) + ## assembly sources + asm_files = set([]) if information["enabled"]: if "constants" in information: constants.update(information["constants"]) -- 2.25.1