summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2006-02-21 20:22:00 +0000
committerRichard Purdie <rpurdie@linux.intel.com>2006-02-21 20:22:00 +0000
commitc31a81b1c376eb872f964a45790cde4843821390 (patch)
tree4bef08bf5bb510714dda006bb78b7b30ed1e14ec
parent2f8ce29c8e0119487014cc109e4734f67bfe9a49 (diff)
downloadbitbake-c31a81b1c376eb872f964a45790cde4843821390.tar.gz
bitbake/bin/bitbake:
- ASSUME_PROVIDED allowed to include runtime names
-rw-r--r--ChangeLog1
-rwxr-xr-xbin/bitbake4
2 files changed, 4 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 32475b55b..05b7332b3 100644
--- 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
diff --git a/bin/bitbake b/bin/bitbake
index bc6a2ca3c..74d9acd02 100755
--- a/bin/bitbake
+++ b/bin/bitbake
@@ -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