From d33df46f1921f241199e7520e384e851840571ef Mon Sep 17 00:00:00 2001 From: Grissiom Date: Wed, 8 Oct 2014 17:53:26 +0800 Subject: [PATCH] tools: fix SrcRemove on empty src If the src is empty list, it will crash at: IndexError: list index out of range: File "/home/xxx/src/SConstruct", line 39: objs = PrepareBuilding(env, RTT_ROOT, has_libcpu=True) ... File "/home/xxx/src/drivers/SConscript", line 12: SrcRemove(src, src_need_remove) File "/home/rt-thread-stable/tools/building.py", line 496: if type(src[0]) == type('str'): --- tools/building.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tools/building.py b/tools/building.py index 24f661de88..79e6fd1a4b 100644 --- a/tools/building.py +++ b/tools/building.py @@ -495,6 +495,9 @@ def EndBuilding(target, program = None): CscopeDatabase(Projects) def SrcRemove(src, remove): + if not src: + return + if type(src[0]) == type('str'): for item in src: if os.path.basename(item) in remove: -- GitLab