diff options
author | Richard Purdie <richard@openedhand.com> | 2006-04-17 09:45:55 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2006-04-17 09:45:55 +0000 |
commit | a9f1e28ec93f9559c6799091651e6db3b34d381b (patch) | |
tree | 8b1ab7ae000c8e55180a2eecac3952ac77c3d902 /bitbake/lib/bb/fetch | |
parent | 6618118b52ea039b7fa5486abc61c0e358c9ebff (diff) | |
download | poky-a9f1e28ec93f9559c6799091651e6db3b34d381b.tar.gz |
task-oh: Move ttf-bitstream-vera, xhost and xauth to be in minimal images (fixes minimal image booting issues)
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@355 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'bitbake/lib/bb/fetch')
-rw-r--r-- | bitbake/lib/bb/fetch/git.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bitbake/lib/bb/fetch/git.py b/bitbake/lib/bb/fetch/git.py index 439d522188..f30ae2360a 100644 --- a/bitbake/lib/bb/fetch/git.py +++ b/bitbake/lib/bb/fetch/git.py | |||
@@ -134,6 +134,7 @@ class Git(Fetch): | |||
134 | os.chdir(repodir) | 134 | os.chdir(repodir) |
135 | rungitcmd("git pull %s://%s%s" % (proto, host, path),d) | 135 | rungitcmd("git pull %s://%s%s" % (proto, host, path),d) |
136 | rungitcmd("git pull --tags %s://%s%s" % (proto, host, path),d) | 136 | rungitcmd("git pull --tags %s://%s%s" % (proto, host, path),d) |
137 | rungitcmd("git prune-packed", d) | ||
137 | # old method of downloading tags | 138 | # old method of downloading tags |
138 | #rungitcmd("rsync -a --verbose --stats --progress rsync://%s%s/ %s" % (host, path, os.path.join(repodir, ".git", "")),d) | 139 | #rungitcmd("rsync -a --verbose --stats --progress rsync://%s%s/ %s" % (host, path, os.path.join(repodir, ".git", "")),d) |
139 | 140 | ||