diff options
-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 |