summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Hatle <mark.hatle@windriver.com>2011-09-19 09:37:42 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-09-21 13:42:51 +0100
commit29aa617a489b32f8ecdee1aae1a84a12d28ef715 (patch)
tree92c78f697f2bbcd605654afe293fdb8691bf552d
parent64ea342b4f7fa448f4f65e26c7976f88d02330b1 (diff)
downloadast2050-yocto-poky-29aa617a489b32f8ecdee1aae1a84a12d28ef715.zip
ast2050-yocto-poky-29aa617a489b32f8ecdee1aae1a84a12d28ef715.tar.gz
Fix RPM dependencies
When packaging for RPM, dependencies were not being properly added to the packages. Only the "providing" dependencies were added due to a typo. (From OE-Core rev: c5d4e17f29d7f032d566d3b222a0ee231da03f78) Signed-off-by: Mark Hatle <mark.hatle@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/classes/package_rpm.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/package_rpm.bbclass b/meta/classes/package_rpm.bbclass
index 4605ec8..d822b54 100644
--- a/meta/classes/package_rpm.bbclass
+++ b/meta/classes/package_rpm.bbclass
@@ -840,7 +840,7 @@ python do_package_rpm () {
os.chmod(outdepends, 0755)
# Poky / RPM Provides
- outprovides = workdir + "/" + srcname + ".requires"
+ outprovides = workdir + "/" + srcname + ".provides"
try:
from __builtin__ import file
OpenPOWER on IntegriCloud