]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
cooker.py: Fix an init problem (from poky)
authorRichard Purdie <rpurdie@linux.intel.com>
Mon, 20 Oct 2008 14:10:09 +0000 (14:10 +0000)
committerRichard Purdie <rpurdie@linux.intel.com>
Mon, 20 Oct 2008 14:10:09 +0000 (14:10 +0000)
lib/bb/cooker.py

index 1531808613d9340a166278c59b0d5fafb2263125..8feb228faf8dc37ebac3da252109402058ee971b 100644 (file)
@@ -762,8 +762,8 @@ class BBCooker:
         self.handleCollections( bb.data.getVar("BBFILE_COLLECTIONS", self.configuration.data, 1) )
 
         bb.msg.debug(1, bb.msg.domain.Collection, "collecting .bb files")
-        bb.data.renameVar("__depends", "__base_depends", self.configuration.data)
         (filelist, masked) = self.collect_bbfiles()
+        bb.data.renameVar("__depends", "__base_depends", self.configuration.data)
         self.parse_bbfiles(filelist, masked)
         bb.msg.debug(1, bb.msg.domain.Collection, "parsing complete")