base.bbclass: Improve the git proxy syntax to match the http/ftp syntax too

This commit is contained in:
Richard Purdie 2008-11-04 19:13:25 +00:00
parent c2ef2d4f5a
commit 7fdff0f3cd
1 changed files with 2 additions and 5 deletions

View File

@ -742,12 +742,9 @@ def generate_git_config(e):
f = open(gitconfig_path, 'w')
f.write("[core]\n")
ignore_count = 1
ignore_host = data.getVar('GIT_PROXY_IGNORE_1', e.data, True)
while (ignore_host):
ignore_hosts = data.getVar('GIT_PROXY_IGNORE', e.data, True).split()
for ignore_host in ignore_hosts:
f.write(" gitproxy = none for %s\n" % ignore_host)
ignore_count += 1
ignore_host = data.getVar('GIT_PROXY_IGNORE_%s' % ignore_count, e.data, True)
f.write(proxy_command)
f.close