aboutsummaryrefslogtreecommitdiffstats
path: root/meta/classes
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2012-03-11 18:26:15 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-03-11 18:26:21 +0000
commit5c8ad2638baac0501cecf38f8d3e8467d56afb8a (patch)
tree815737ed43b4b55c6dc3a4156ec4fa528785e83c /meta/classes
parent50dc8bfbac42b9a9b52a2f7d0568740c41790c13 (diff)
downloadopenembedded-core-contrib-5c8ad2638baac0501cecf38f8d3e8467d56afb8a.tar.gz
package.bbclass: Drop python depends from rpmdeps
This python depends is added by rpmdeps every time it finds a python script. This is not necessary since we handle this in otherways. It also breaks things like nativesdk since the dependency is not renamed. The easiest solution is just to ignore this dependency. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r--meta/classes/package.bbclass2
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/classes/package.bbclass b/meta/classes/package.bbclass
index e8c449711f..9b6862decf 100644
--- a/meta/classes/package.bbclass
+++ b/meta/classes/package.bbclass
@@ -1185,6 +1185,8 @@ python package_do_filedeps() {
if value.startswith("rpmlib("):
continue
+ if value == "python":
+ continue
if file not in i:
i[file] = []
i[file].append(value)