diff options
author | Richard Purdie <richard@openedhand.com> | 2008-10-08 14:02:06 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2008-10-08 14:02:06 +0000 |
commit | 228f25bb45cdd571a20f33d92c9fdcf732586b03 (patch) | |
tree | 346f4f8adfcc1a4c788aeb12bb767551e2cb1fec | |
parent | 23a18ebd09666b1ee4da2590daa05fccb47f74fd (diff) | |
download | poky-228f25bb45cdd571a20f33d92c9fdcf732586b03.tar.gz |
bitbake: cooker.py: Fix the point the configuration __depends is renamed
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@5453 311d38ba-8fff-0310-9ca6-ca027cbcb966
-rw-r--r-- | bitbake-dev/lib/bb/cooker.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake-dev/lib/bb/cooker.py b/bitbake-dev/lib/bb/cooker.py index 1531808613..8feb228faf 100644 --- a/bitbake-dev/lib/bb/cooker.py +++ b/bitbake-dev/lib/bb/cooker.py | |||
@@ -762,8 +762,8 @@ class BBCooker: | |||
762 | self.handleCollections( bb.data.getVar("BBFILE_COLLECTIONS", self.configuration.data, 1) ) | 762 | self.handleCollections( bb.data.getVar("BBFILE_COLLECTIONS", self.configuration.data, 1) ) |
763 | 763 | ||
764 | bb.msg.debug(1, bb.msg.domain.Collection, "collecting .bb files") | 764 | bb.msg.debug(1, bb.msg.domain.Collection, "collecting .bb files") |
765 | bb.data.renameVar("__depends", "__base_depends", self.configuration.data) | ||
766 | (filelist, masked) = self.collect_bbfiles() | 765 | (filelist, masked) = self.collect_bbfiles() |
766 | bb.data.renameVar("__depends", "__base_depends", self.configuration.data) | ||
767 | self.parse_bbfiles(filelist, masked) | 767 | self.parse_bbfiles(filelist, masked) |
768 | bb.msg.debug(1, bb.msg.domain.Collection, "parsing complete") | 768 | bb.msg.debug(1, bb.msg.domain.Collection, "parsing complete") |
769 | 769 | ||