summaryrefslogtreecommitdiffstats
path: root/lib/bb/fetch
diff options
context:
space:
mode:
authorChris Larson <chris_larson@mentor.com>2010-12-10 09:54:53 -0500
committerChris Larson <chris_larson@mentor.com>2010-12-10 09:56:15 -0500
commit411b808b81216473c3dbeca783ec5bc99152da26 (patch)
tree05d9af0a2ab9b06cd70e30c937b44d6bad8797b1 /lib/bb/fetch
parent51076c3737bf8b51d12cfaf2c7c5f82fa64a662d (diff)
downloadbitbake-411b808b81216473c3dbeca783ec5bc99152da26.tar.gz
Revert "bitbake/git.py: Make sure different branches can have different revisions without triggering build count increases"
Per Martin Jansa, this breaks compatibility. We can revisit in the future, likely during the fetcher rewrite. This reverts commit f3292fa11723c748ef1b4270384abf6d586a822e.
Diffstat (limited to 'lib/bb/fetch')
-rw-r--r--lib/bb/fetch/git.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/fetch/git.py b/lib/bb/fetch/git.py
index a2fbd78cb..47a6388c0 100644
--- a/lib/bb/fetch/git.py
+++ b/lib/bb/fetch/git.py
@@ -204,7 +204,7 @@ class Git(Fetch):
"""
Return a unique key for the url
"""
- return "git:" + ud.host + ud.path.replace('/', '.') + ud.branch
+ return "git:" + ud.host + ud.path.replace('/', '.')
def _latest_revision(self, url, ud, d):
"""