Kaydet (Commit) 6fbce0cb authored tarafından Miklos Vajna's avatar Miklos Vajna

gbuild-to-ideNS: stop printing multi-target warning, again

This restores commit efed9a75 (gbuild-to-ideNS:
stop printing multi-target warning, 2017-02-10), reverted in commit
5382fdaf (Reverted ide generator script.,
2017-02-20), probably accidentally.

Change-Id: Ibe2afcfe7a0b02dbdeadb6af5d6e677dd984ad0e
üst 7cc5aca1
......@@ -186,10 +186,6 @@ class GbuildParser:
if path not in self.target_by_path:
self.target_by_path[path] = set()
self.target_by_path[path] |= set([target])
for path in self.target_by_path:
if len(set(self.target_by_path[path])) > 1:
print('fdo#70422: multiple target use dir %s: %s' % (
path, ', '.join([target.short_name() for target in set(self.target_by_path[path])])))
for location in self.target_by_location:
self.modulenamelist.append(os.path.split(location)[1])
return self
......
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