From e41671ea1d2c9efabb4a577a0b69851558a15b5f Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Tue, 29 Mar 2011 00:33:40 +0100 Subject: Revert "bitbake/gcc: Enable a shared common source tree" This reverts commit 12b163dbd81cafafec1ebe3c4039c65af60ee261 as it was an unintended change for master --- bitbake/lib/bb/runqueue.py | 8 -------- 1 file changed, 8 deletions(-) (limited to 'bitbake/lib/bb/runqueue.py') diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py index cb9e462869..3db083b261 100644 --- a/bitbake/lib/bb/runqueue.py +++ b/bitbake/lib/bb/runqueue.py @@ -105,11 +105,6 @@ class RunQueueScheduler(object): if self.rq.runq_running[taskid] == 1: continue if self.rq.runq_buildable[taskid] == 1: - fn = self.rqdata.taskData.fn_index[self.rqdata.runq_fnid[taskid]] - taskname = self.rqdata.runq_task[taskid] - stamp = bb.build.stampfile(taskname, self.rqdata.dataCache, fn) - if stamp in self.rq.build_stamps.values(): - continue return taskid def next(self): @@ -1015,7 +1010,6 @@ class RunQueueExecute: self.runq_complete = [] self.build_pids = {} self.build_pipes = {} - self.build_stamps = {} self.failed_fnids = [] def runqueue_process_waitpid(self): @@ -1030,7 +1024,6 @@ class RunQueueExecute: del self.build_pids[result[0]] self.build_pipes[result[0]].close() del self.build_pipes[result[0]] - del self.build_stamps[result[0]] if result[1] != 0: self.task_fail(task, result[1]>>8) else: @@ -1319,7 +1312,6 @@ class RunQueueExecuteTasks(RunQueueExecute): self.build_pids[pid] = task self.build_pipes[pid] = runQueuePipe(pipein, pipeout, self.cfgData) - self.build_stamps[pid] = bb.build.stampfile(taskname, self.rqdata.dataCache, fn) self.runq_running[task] = 1 self.stats.taskActive() if self.stats.active < self.number_tasks: -- cgit v1.2.3-54-g00ecf