From 812f8835d2590ceccb067bae79f06c253140d290 Mon Sep 17 00:00:00 2001 From: Joshua Lock Date: Fri, 8 Oct 2010 16:54:19 +0100 Subject: bitbake/runqueue: make the runtask program configurable Signed-off-by: Joshua Lock --- bitbake/lib/bb/runqueue.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'bitbake/lib') diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py index 978e429d58..9befe976d1 100644 --- a/bitbake/lib/bb/runqueue.py +++ b/bitbake/lib/bb/runqueue.py @@ -1072,7 +1072,8 @@ class RunQueueExecute: sys.stdout.flush() sys.stderr.flush() - proc = subprocess.Popen(["bitbake-runtask", self.rqdata.hashfile, fn, taskname, str(self.cooker.configuration.dry_run)], env=env, stdout=subprocess.PIPE, stdin=subprocess.PIPE) + runtask = the_data.getVar("BB_RUNTASK", True) or "bitbake-runtask" + proc = subprocess.Popen([runtask, self.rqdata.hashfile, fn, taskname, str(self.cooker.configuration.dry_run)], env=env, stdout=subprocess.PIPE, stdin=subprocess.PIPE) pipein = proc.stdout pipeout = proc.stdin pid = proc.pid -- cgit v1.2.3-54-g00ecf