From: Michael Tremer Date: Fri, 3 Oct 2008 12:42:14 +0000 (+0200) Subject: Always add "localhost/1" to the distcc host list. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fd021163ffa195080ade3952ea7f5986fd7566dd;p=ipfire.org.git Always add "localhost/1" to the distcc host list. --- diff --git a/build/rpc.py b/build/rpc.py index 951bcf52..3a892340 100644 --- a/build/rpc.py +++ b/build/rpc.py @@ -77,7 +77,7 @@ elif action == "get": builders = [] for builder in getAllBuilders(): builders.append("%s" % builder.distcc) - string = "" + string = "localhost/1" while True: if not builders: break rand = random.randint(0, len(builders)-1)