This email list is read-only.  Emails sent to this list will be discarded
----------------------------------
 meta/classes/base.bbclass |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

New commits:
commit efbd5e58d4d0d41338c36d9fef5d46b137dc6bb8
Author: Richard Purdie <[EMAIL PROTECTED]>
Date:   Fri Oct 31 14:47:22 2008 +0000

    base.bbclass: Fix infinite loop


Diff in this email is a maximum of 400 lines.
diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass
index c2323fa..824ce05 100644
--- a/meta/classes/base.bbclass
+++ b/meta/classes/base.bbclass
@@ -741,11 +741,11 @@ def generate_git_config(e):
                 f = open(gitconfig_path, 'w')
                 f.write("[core]\n")
                 ignore_count = 1
-                ignore_host = "    gitproxy = non for %s" % 
data.getVar('GIT_PROXY_IGNORE_1', e.data, True)
+                ignore_host = data.getVar('GIT_PROXY_IGNORE_1', e.data, True)
                 while (ignore_host):
-                        f.write(ignore_host)
+                        f.write("    gitproxy = non for %s" % ignore_host)
                         ignore_count += 1
-                        ignore_host =  "    gitproxy = non for %s\n" % 
data.getVar('GIT_PROXY_IGNORE_%s' % ignore_count, e.data, True)
+                        ignore_host = data.getVar('GIT_PROXY_IGNORE_%s' % 
ignore_count, e.data, True)
                 f.write(proxy_command)
                 f.close
 
_______________________________________________
Commits mailing list
[email protected]
https://lists.moblin.org/mailman/listinfo/commits

Reply via email to