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>
This commit is contained in:
Mark Hatle 2011-09-19 09:37:42 -05:00 committed by Richard Purdie
parent 64ea342b4f
commit 29aa617a48
1 changed files with 1 additions and 1 deletions

View File

@ -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