From 73f44b2bb0d5fe6d39ffc894bf13ff063b19237c Mon Sep 17 00:00:00 2001 From: duplo Date: Tue, 8 Sep 2009 13:57:58 +0000 Subject: [PATCH] Exclude buildrev.h from the codelite project file. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@2906 38d2e660-2303-0410-9eaa-f027e97ec537 --- wizard/plugins/codelite.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wizard/plugins/codelite.py b/wizard/plugins/codelite.py index 398a90d5..0797da98 100644 --- a/wizard/plugins/codelite.py +++ b/wizard/plugins/codelite.py @@ -91,7 +91,7 @@ def findSources(path): if dir.find("svn") == -1 and dir != "images" and dir != "obj": file_dict[root.replace(path, "")]["dirs"].append(dir) for file in files: - if file.endswith(const.EXTENSION_FILTER): + if file.endswith(const.EXTENSION_FILTER) and file != "buildrev.h": file_dict[root.replace(path, "")]["files"].append(file) return file_dict -- 2.25.1