diff options
| author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-02-25 12:13:27 +0000 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-02-25 12:13:56 +0000 |
| commit | 0b17cbc8f27f1dc47d3f7c7c829222fc5abb5d9c (patch) | |
| tree | 2286a45c160001442249240258df1cc506746285 | |
| parent | 2f6b66b9bbba66e4157a8008b67ff18a14435f66 (diff) | |
| download | poky-0b17cbc8f27f1dc47d3f7c7c829222fc5abb5d9c.tar.gz | |
package.bbclass: Unbreak per file dependencies and blacklist doc packages
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
| -rw-r--r-- | 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 fa1abf0dda..dcece40acd 100644 --- a/meta/classes/package.bbclass +++ b/meta/classes/package.bbclass | |||
| @@ -642,7 +642,7 @@ python package_do_filedeps() { | |||
| 642 | 642 | ||
| 643 | # Determine dependencies | 643 | # Determine dependencies |
| 644 | for pkg in packages.split(): | 644 | for pkg in packages.split(): |
| 645 | 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: | 645 | 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-'): |
| 646 | continue | 646 | continue |
| 647 | 647 | ||
| 648 | # Process provides | 648 | # Process provides |
