diff options
author | Joshua Lock <josh@linux.intel.com> | 2010-10-08 16:54:19 +0100 |
---|---|---|
committer | Joshua Lock <josh@linux.intel.com> | 2010-10-12 13:32:27 +0100 |
commit | 812f8835d2590ceccb067bae79f06c253140d290 (patch) | |
tree | d48395f676f195824950004a288ee8dffaf53391 /bitbake/lib/bb/runqueue.py | |
parent | 35f36bac4202eaa88f8bd6d972fcb242f8571a73 (diff) | |
download | poky-812f8835d2590ceccb067bae79f06c253140d290.tar.gz |
bitbake/runqueue: make the runtask program configurable
Signed-off-by: Joshua Lock <josh@linux.intel.com>
Diffstat (limited to 'bitbake/lib/bb/runqueue.py')
-rw-r--r-- | bitbake/lib/bb/runqueue.py | 3 |
1 files changed, 2 insertions, 1 deletions
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: | |||
1072 | sys.stdout.flush() | 1072 | sys.stdout.flush() |
1073 | sys.stderr.flush() | 1073 | sys.stderr.flush() |
1074 | 1074 | ||
1075 | proc = subprocess.Popen(["bitbake-runtask", self.rqdata.hashfile, fn, taskname, str(self.cooker.configuration.dry_run)], env=env, stdout=subprocess.PIPE, stdin=subprocess.PIPE) | 1075 | runtask = the_data.getVar("BB_RUNTASK", True) or "bitbake-runtask" |
1076 | proc = subprocess.Popen([runtask, self.rqdata.hashfile, fn, taskname, str(self.cooker.configuration.dry_run)], env=env, stdout=subprocess.PIPE, stdin=subprocess.PIPE) | ||
1076 | pipein = proc.stdout | 1077 | pipein = proc.stdout |
1077 | pipeout = proc.stdin | 1078 | pipeout = proc.stdin |
1078 | pid = proc.pid | 1079 | pid = proc.pid |