diff options
-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: |