bitbake/bin/bitbake:
authorRichard Purdie <rpurdie@linux.intel.com>
Tue, 21 Feb 2006 20:22:00 +0000 (20:22 +0000)
committerRichard Purdie <rpurdie@linux.intel.com>
Tue, 21 Feb 2006 20:22:00 +0000 (20:22 +0000)
    - ASSUME_PROVIDED allowed to include runtime names

ChangeLog
bin/bitbake

index 32475b5..05b7332 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,7 @@ Changes in BitBake 1.3.x:
        - Fix to check both RDEPENDS and RDEPENDS_${PN}
        - Fix a RDEPENDS parsing bug in utils:explode_deps()
        - Update git fetcher behaviour to match git changes
+       - ASSUME_PROVIDED allowed to include runtime packages
 
 Changes in BitBake 1.3.3:
        - Create a new Fetcher module to ease the
index bc6a2ca..74d9acd 100755 (executable)
@@ -665,7 +665,9 @@ class BBCooker:
 
         bb.debug(2, "Additional runtime dependencies for %s are: %s" % (item, " ".join(rdepends)))
 
-        for rdepend in rdepends:  
+        for rdepend in rdepends:
+            if rdepend in self.status.ignored_dependencies:
+                continue
             if not self.buildRProvider(rdepend, buildAllDeps):
                 return False
         return True