summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2017-02-10 08:10:27 +0100
committerMiklos Vajna <vmiklos@collabora.co.uk>2017-02-10 08:11:19 +0100
commitefed9a7585c7a2387f9c745910af071809342f46 (patch)
tree339523a749cec28f696cfcb2e35e2493644d3fd4 /bin
parentea92b7cc2e4a948e101f4915d50c2469968e95b1 (diff)
gbuild-to-ideNS: stop printing multi-target warning
gbuild-to-ide stopped doing so in commit 2a4b291d3bfb378776388f67670d877c658fce47 (gbuild-to-ide GbuildParser cleaned, 2017-01-14), be consistent. Change-Id: I307fb2919bf2ace57cd65f81d410d231d3636b80
Diffstat (limited to 'bin')
-rwxr-xr-xbin/gbuild-to-ideNS4
1 files changed, 0 insertions, 4 deletions
diff --git a/bin/gbuild-to-ideNS b/bin/gbuild-to-ideNS
index 7de2fb48d371..7fee5a435b7c 100755
--- a/bin/gbuild-to-ideNS
+++ b/bin/gbuild-to-ideNS
@@ -199,10 +199,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