aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Sokolovsky <paul.sokolovsky@linaro.org>2012-10-17 16:14:52 +0300
committerPaul Sokolovsky <paul.sokolovsky@linaro.org>2012-10-17 16:14:52 +0300
commitdcbd51a1c9af2ee82d075339a7c828458a839a31 (patch)
tree4f65798f1b3ee69f16249c7275ee6886ef934644
parent5c4571484129a5f02a35be6d0e28a8af1522bd07 (diff)
manifest-union: projects should be unique per manifest.
-rwxr-xr-xutils/seeded-builds/manifest-union4
1 files changed, 3 insertions, 1 deletions
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