[OE-core] [PATCH 16/50] package.bbclass: Unbreak per file dependencies and blacklist doc packages

Koen Kooi koen at dominion.thruhere.net
Mon Feb 28 22:18:22 UTC 2011


From: Richard Purdie <richard.purdie at linuxfoundation.org>

Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/classes/package.bbclass |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/meta/classes/package.bbclass b/meta/classes/package.bbclass
index fa1abf0..dcece40 100644
--- a/meta/classes/package.bbclass
+++ b/meta/classes/package.bbclass
@@ -642,7 +642,7 @@ python package_do_filedeps() {
 
 	# Determine dependencies
 	for pkg in packages.split():
-		if pkg.endswith('-dbg') or pkg.find('-locale-') != -1 or pkg.find('-localedata-') != -1 or pkg.find('-gconv-') != -1  or pkg.find('-charmap-') != -1 or pkg.startswith('kernel-module-') != -1:
+		if pkg.endswith('-dbg') or pkg.endswith('-doc') or pkg.find('-locale-') != -1 or pkg.find('-localedata-') != -1 or pkg.find('-gconv-') != -1  or pkg.find('-charmap-') != -1 or pkg.startswith('kernel-module-'):
 			continue
 
 		# Process provides
-- 
1.6.6.1





More information about the Openembedded-core mailing list