diff options
author | Martin Jansa <martin.jansa@gmail.com> | 2010-01-21 10:30:37 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-01-21 10:30:37 +0000 |
commit | c69797d89c988164cbfde6436e790ea0fa5cdbc0 (patch) | |
tree | ae785ba4900b85da25d628207315eac04c197161 /bitbake/lib/bb/fetch | |
parent | 573f6125e61e7f8e0a85a3ba0e42d8e1518cefba (diff) | |
download | poky-c69797d89c988164cbfde6436e790ea0fa5cdbc0.tar.gz |
bitbake/git: remove repodir usage (from bitbake master)
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake/lib/bb/fetch')
-rw-r--r-- | bitbake/lib/bb/fetch/git.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/fetch/git.py b/bitbake/lib/bb/fetch/git.py index 0e68325db9..9430582d55 100644 --- a/bitbake/lib/bb/fetch/git.py +++ b/bitbake/lib/bb/fetch/git.py | |||
@@ -211,6 +211,6 @@ class Git(Fetch): | |||
211 | os.chdir(cwd) | 211 | os.chdir(cwd) |
212 | 212 | ||
213 | buildindex = "%s" % output.split()[0] | 213 | buildindex = "%s" % output.split()[0] |
214 | bb.msg.debug(1, bb.msg.domain.Fetcher, "GIT repository for %s in %s is returning %s revisions in rev-list before %s" % (url, repodir, buildindex, rev)) | 214 | bb.msg.debug(1, bb.msg.domain.Fetcher, "GIT repository for %s in %s is returning %s revisions in rev-list before %s" % (url, ud.clonedir, buildindex, rev)) |
215 | return buildindex | 215 | return buildindex |
216 | 216 | ||