diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-02-08 09:33:52 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-02-08 12:05:35 +0000 |
commit | a235c67479846590eb2c7236bec3360b23c3e9b6 (patch) | |
tree | 1876dc6969850e8dce2629a9448c3d4086d51f2a | |
parent | 5920e85c561624e657c126df58f5c378a8950bbc (diff) | |
download | poky-a235c67479846590eb2c7236bec3360b23c3e9b6.tar.gz |
bitbake/fetch2/git: Fix broken variable reference
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | bitbake/lib/bb/fetch2/git.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/fetch2/git.py b/bitbake/lib/bb/fetch2/git.py index f05a360f18..4cb6693505 100644 --- a/bitbake/lib/bb/fetch2/git.py +++ b/bitbake/lib/bb/fetch2/git.py | |||
@@ -74,7 +74,7 @@ class Git(FetchMethod): | |||
74 | for name in ud.names: | 74 | for name in ud.names: |
75 | # Ensure anything that doesn't look like a sha256 checksum/revision is translated into one | 75 | # Ensure anything that doesn't look like a sha256 checksum/revision is translated into one |
76 | if not ud.revisions[name] or len(ud.revisions[name]) != 40 or (False in [c in "abcdef0123456789" for c in ud.revisions[name]]): | 76 | if not ud.revisions[name] or len(ud.revisions[name]) != 40 or (False in [c in "abcdef0123456789" for c in ud.revisions[name]]): |
77 | ud.revisions[name] = self.latest_revision(url, ud, d, name) | 77 | ud.revisions[name] = self.latest_revision(ud.url, ud, d, name) |
78 | 78 | ||
79 | ud.localfile = ud.clonedir | 79 | ud.localfile = ud.clonedir |
80 | 80 | ||