diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2010-07-16 15:10:22 +0100 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-07-16 15:10:40 +0100 |
commit | 63e6ba85677b8aa9f4cf9942a1fccbb8a8c72660 (patch) | |
tree | 56be00c10b229ddc5e63bf1f02d7ac5c23ba8381 /bitbake/lib/bb/runqueue.py | |
parent | c4fde248b14d4be9cab6d0eff85f9d7f852a4b65 (diff) | |
download | openembedded-core-63e6ba85677b8aa9f4cf9942a1fccbb8a8c72660.tar.gz openembedded-core-63e6ba85677b8aa9f4cf9942a1fccbb8a8c72660.tar.bz2 openembedded-core-63e6ba85677b8aa9f4cf9942a1fccbb8a8c72660.zip |
bitbake: Add support for .bbappend files (see mailing lists for detais)
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, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py index f9acd9ca2d..2830bc4ad9 100644 --- a/bitbake/lib/bb/runqueue.py +++ b/bitbake/lib/bb/runqueue.py @@ -1067,7 +1067,7 @@ class RunQueue: 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: - the_data = self.cooker.bb_cache.loadDataFull(fn, self.cooker.configuration.data) + the_data = self.cooker.bb_cache.loadDataFull(fn, self.cooker.get_file_appends(fn), self.cooker.configuration.data) if not self.cooker.configuration.dry_run: bb.build.exec_task(taskname, the_data) |