diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2017-02-20 17:19:54 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2017-02-20 17:19:54 +0100 |
commit | 6fbce0cb340448dc0074ff2462babc657da46056 (patch) | |
tree | c30e27abca02b6a9709c2872517a73a42345e9c7 /bin | |
parent | 7cc5aca1901ca7d67dffdcfc29537f32c31e0235 (diff) |
gbuild-to-ideNS: stop printing multi-target warning, again
This restores commit efed9a7585c7a2387f9c745910af071809342f46 (gbuild-to-ideNS:
stop printing multi-target warning, 2017-02-10), reverted in commit
5382fdaf2d651a393a1caf2e09351c77cb84c753 (Reverted ide generator script.,
2017-02-20), probably accidentally.
Change-Id: Ibe2afcfe7a0b02dbdeadb6af5d6e677dd984ad0e
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/gbuild-to-ideNS | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/bin/gbuild-to-ideNS b/bin/gbuild-to-ideNS index e18f3bde51c6..703e539e61aa 100755 --- a/bin/gbuild-to-ideNS +++ b/bin/gbuild-to-ideNS @@ -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 |