diff options
Diffstat (limited to 'bitbake/lib/bb/fetch2/gitsm.py')
| -rw-r--r-- | bitbake/lib/bb/fetch2/gitsm.py | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/bitbake/lib/bb/fetch2/gitsm.py b/bitbake/lib/bb/fetch2/gitsm.py index 572b637c9a..4093f6e846 100644 --- a/bitbake/lib/bb/fetch2/gitsm.py +++ b/bitbake/lib/bb/fetch2/gitsm.py | |||
| @@ -27,7 +27,7 @@ from bb.fetch2 import runfetchcmd | |||
| 27 | from bb.fetch2 import logger | 27 | from bb.fetch2 import logger | 
| 28 | 28 | ||
| 29 | class GitSM(Git): | 29 | class GitSM(Git): | 
| 30 | def supports(self, url, ud, d): | 30 | def supports(self, ud, d): | 
| 31 | """ | 31 | """ | 
| 32 | Check to see if a given url can be fetched with git. | 32 | Check to see if a given url can be fetched with git. | 
| 33 | """ | 33 | """ | 
| @@ -42,7 +42,7 @@ class GitSM(Git): | |||
| 42 | pass | 42 | pass | 
| 43 | return False | 43 | return False | 
| 44 | 44 | ||
| 45 | def update_submodules(self, u, ud, d): | 45 | def update_submodules(self, ud, d): | 
| 46 | # We have to convert bare -> full repo, do the submodule bit, then convert back | 46 | # We have to convert bare -> full repo, do the submodule bit, then convert back | 
| 47 | tmpclonedir = ud.clonedir + ".tmp" | 47 | tmpclonedir = ud.clonedir + ".tmp" | 
| 48 | gitdir = tmpclonedir + os.sep + ".git" | 48 | gitdir = tmpclonedir + os.sep + ".git" | 
| @@ -58,13 +58,13 @@ class GitSM(Git): | |||
| 58 | os.rename(gitdir, ud.clonedir,) | 58 | os.rename(gitdir, ud.clonedir,) | 
| 59 | bb.utils.remove(tmpclonedir, True) | 59 | bb.utils.remove(tmpclonedir, True) | 
| 60 | 60 | ||
| 61 | def download(self, loc, ud, d): | 61 | def download(self, ud, d): | 
| 62 | Git.download(self, loc, ud, d) | 62 | Git.download(self, ud, d) | 
| 63 | 63 | ||
| 64 | os.chdir(ud.clonedir) | 64 | os.chdir(ud.clonedir) | 
| 65 | submodules = self.uses_submodules(ud, d) | 65 | submodules = self.uses_submodules(ud, d) | 
| 66 | if submodules: | 66 | if submodules: | 
| 67 | self.update_submodules(loc, ud, d) | 67 | self.update_submodules(ud, d) | 
| 68 | 68 | ||
| 69 | def unpack(self, ud, destdir, d): | 69 | def unpack(self, ud, destdir, d): | 
| 70 | Git.unpack(self, ud, destdir, d) | 70 | Git.unpack(self, ud, destdir, d) | 
