From dcbd51a1c9af2ee82d075339a7c828458a839a31 Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Wed, 17 Oct 2012 16:14:52 +0300 Subject: manifest-union: projects should be unique per manifest. --- utils/seeded-builds/manifest-union | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/utils/seeded-builds/manifest-union b/utils/seeded-builds/manifest-union index c27244c..4a2392a 100755 --- a/utils/seeded-builds/manifest-union +++ b/utils/seeded-builds/manifest-union @@ -51,7 +51,9 @@ class Manifest: revision = project_node.getAttribute("revision") path = project_node.getAttribute("path") # key = (remote, name, revision, path) - key = (remote, name) +# key = (remote, name) + # Turned out can't have dup project names per manifest, not per remote + key = name if key in self.project_map: return False self.project_map[key] = project_node -- cgit v1.2.3