diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2010-03-23 22:33:02 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-03-23 22:33:02 +0000 |
commit | 589df80ca1b825afd138531bb796aa8617ed0991 (patch) | |
tree | 35657e1d9d1388ca4b00c31e9d431269ed3935bb /bitbake/lib/bb/runqueue.py | |
parent | 0449c26e9753ec98fc342cf4853211c923f8659e (diff) | |
download | openembedded-core-589df80ca1b825afd138531bb796aa8617ed0991.tar.gz openembedded-core-589df80ca1b825afd138531bb796aa8617ed0991.tar.bz2 openembedded-core-589df80ca1b825afd138531bb796aa8617ed0991.zip |
bitbake: Gross hack to fix packaged-staging with BBCLASSEXTEND packages
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake/lib/bb/runqueue.py')
-rw-r--r-- | bitbake/lib/bb/runqueue.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py index f315b5d40a..887cb5c2b6 100644 --- a/bitbake/lib/bb/runqueue.py +++ b/bitbake/lib/bb/runqueue.py @@ -978,6 +978,7 @@ class RunQueue: self.get_user_idstring(task))) bb.data.setVar("__RUNQUEUE_DO_NOT_USE_EXTERNALLY", self, self.cooker.configuration.data) + bb.data.setVar("__RUNQUEUE_DO_NOT_USE_EXTERNALLY2", fn, self.cooker.configuration.data) try: self.cooker.tryBuild(fn, taskname[3:]) except bb.build.EventException: @@ -1157,6 +1158,7 @@ class runQueueTaskCompleted(runQueueEvent): def check_stamp_fn(fn, taskname, d): rq = bb.data.getVar("__RUNQUEUE_DO_NOT_USE_EXTERNALLY", d) + fn = bb.data.getVar("__RUNQUEUE_DO_NOT_USE_EXTERNALLY2", d) fnid = rq.taskData.getfn_id(fn) taskid = rq.get_task_id(fnid, taskname) if taskid is not None: |