diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2009-12-11 17:20:06 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2009-12-11 17:20:06 +0000 |
commit | 1183aff5e9c9e117a0e9af3c1588893387a7d6c1 (patch) | |
tree | b5b5bc31e109a0476038089910ac4e790aec1bac /bitbake | |
parent | b80f6d8ac4f7f76c2a2f1450616a963ca4e6deba (diff) | |
download | poky-1183aff5e9c9e117a0e9af3c1588893387a7d6c1.tar.gz |
bitbake/git.py: Typo fix
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/bb/fetch/git.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/fetch/git.py b/bitbake/lib/bb/fetch/git.py index 79ca1a2663..3016f0f00d 100644 --- a/bitbake/lib/bb/fetch/git.py +++ b/bitbake/lib/bb/fetch/git.py | |||
@@ -77,13 +77,13 @@ class Git(Fetch): | |||
77 | else: | 77 | else: |
78 | username = "" | 78 | username = "" |
79 | 79 | ||
80 | repofile = os.path.join(data.getVar("DL_DIR", d, 1), ud.mirrortarbal) | 80 | repofile = os.path.join(data.getVar("DL_DIR", d, 1), ud.mirrortarball) |
81 | 81 | ||
82 | coname = '%s' % (ud.tag) | 82 | coname = '%s' % (ud.tag) |
83 | codir = os.path.join(ud.clonedir, coname) | 83 | codir = os.path.join(ud.clonedir, coname) |
84 | 84 | ||
85 | if not os.path.exists(ud.clonedir): | 85 | if not os.path.exists(ud.clonedir): |
86 | if Fetch.try_mirror(d, ud.mirrortarbal): | 86 | if Fetch.try_mirror(d, ud.mirrortarball): |
87 | bb.mkdirhier(ud.clonedir) | 87 | bb.mkdirhier(ud.clonedir) |
88 | os.chdir(ud.clonedir) | 88 | os.chdir(ud.clonedir) |
89 | runfetchcmd("tar -xzf %s" % (repofile), d) | 89 | runfetchcmd("tar -xzf %s" % (repofile), d) |