Kaydet (Commit) 1b4746f5 authored tarafından jan Iversen's avatar jan Iversen

gbuild-to-ide Problem with multiple targets.

2 statement changed indention and caused problems

Change-Id: I67c1d51fcb9efa447085f8839c450c9741905f08
üst c919e319
......@@ -136,12 +136,12 @@ class GbuildParser:
for target in self.files:
if target.location not in self.target_by_location:
self.target_by_location[target.location] = set()
self.target_by_location[target.location] |= set([target])
self.target_by_location[target.location] |= set([target])
for cxx in target.cxxobjects:
path = '/'.join(cxx.split('/')[:-1])
if path not in self.target_by_path:
self.target_by_path[path] = set()
self.target_by_path[path] |= set([target])
self.target_by_path[path] |= set([target])
for path in self.target_by_path:
x = self.target_by_path[path]
if path != '' and len(set(self.target_by_path[path])) > 1:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment