From: Michael Tremer Date: Sun, 15 Feb 2009 10:50:41 +0000 (+0100) Subject: We also verify the target. X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=eeaf3c5c8135dfb239bfe3fa97ce9cfa512a15ac;p=ipfire.org.git We also verify the target. --- diff --git a/build/rpc.py b/build/rpc.py index 3a660b1b..686ce37c 100644 --- a/build/rpc.py +++ b/build/rpc.py @@ -47,7 +47,8 @@ def run(uuid, action): if myself.uuid == builder.uuid: print "localhost/%s" % (builder.jobs() or "4") else: - if myself.toolchain() == builder.toolchain(): + if ((myself.toolchain() == builder.toolchain()) and \ + (myself.target() == builder.target())): print "%s" % (builder.distcc,) elif action == "set":