diff options
author | jan Iversen <jani@documentfoundation.org> | 2017-01-05 09:39:11 +0100 |
---|---|---|
committer | jan Iversen <jani@documentfoundation.org> | 2017-01-05 09:41:20 +0100 |
commit | 1b4746f58c553775f4bba25f439102d30decdf2c (patch) | |
tree | 7e09e0ded473d449b8f6de7904494bdb9458107c /bin | |
parent | c919e3194470d4edce6fac932407bb895a1b93d3 (diff) |
gbuild-to-ide Problem with multiple targets.
2 statement changed indention and caused problems
Change-Id: I67c1d51fcb9efa447085f8839c450c9741905f08
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/gbuild-to-ide | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/gbuild-to-ide b/bin/gbuild-to-ide index 0a975a68ae19..ab9c785b572b 100755 --- a/bin/gbuild-to-ide +++ b/bin/gbuild-to-ide @@ -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: |