diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2008-10-31 14:47:22 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2008-10-31 14:47:22 +0000 |
commit | efbd5e58d4d0d41338c36d9fef5d46b137dc6bb8 (patch) | |
tree | 730bd0bb37f473ad3d214358eb88519d7aef0a3a | |
parent | af861caace1b7b82a44509f06eadd4a54f686b23 (diff) | |
download | poky-efbd5e58d4d0d41338c36d9fef5d46b137dc6bb8.tar.gz |
base.bbclass: Fix infinite loop
-rw-r--r-- | meta/classes/base.bbclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass index c2323fabe9..824ce05fc9 100644 --- a/meta/classes/base.bbclass +++ b/meta/classes/base.bbclass | |||
@@ -741,11 +741,11 @@ def generate_git_config(e): | |||
741 | f = open(gitconfig_path, 'w') | 741 | f = open(gitconfig_path, 'w') |
742 | f.write("[core]\n") | 742 | f.write("[core]\n") |
743 | ignore_count = 1 | 743 | ignore_count = 1 |
744 | ignore_host = " gitproxy = non for %s" % data.getVar('GIT_PROXY_IGNORE_1', e.data, True) | 744 | ignore_host = data.getVar('GIT_PROXY_IGNORE_1', e.data, True) |
745 | while (ignore_host): | 745 | while (ignore_host): |
746 | f.write(ignore_host) | 746 | f.write(" gitproxy = non for %s" % ignore_host) |
747 | ignore_count += 1 | 747 | ignore_count += 1 |
748 | ignore_host = " gitproxy = non for %s\n" % data.getVar('GIT_PROXY_IGNORE_%s' % ignore_count, e.data, True) | 748 | ignore_host = data.getVar('GIT_PROXY_IGNORE_%s' % ignore_count, e.data, True) |
749 | f.write(proxy_command) | 749 | f.write(proxy_command) |
750 | f.close | 750 | f.close |
751 | 751 | ||