mirror of
https://git.yoctoproject.org/poky
synced 2026-03-26 13:02:22 +01:00
bitbake.conf/python: Drop setting RDEPENDS/RPROVIDES default
We never recommend setting RDEPENDS or RPROVIDES without a package name against them. The default in bitbake.conf is legacy only, drop it. The python recipe was trying to add to the empty variable in the native case fix that too. (From OE-Core rev: b8bbc1bbe282cce2ea4d0ff293f931f6caf6153b) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -240,7 +240,7 @@ python(){
|
||||
# First set RPROVIDES for -native case
|
||||
# Hardcoded since it cant be python3-native-foo, should be python3-foo-native
|
||||
pn = 'python3'
|
||||
rprovides = d.getVar('RPROVIDES').split()
|
||||
rprovides = (d.getVar('RPROVIDES') or "").split()
|
||||
|
||||
# ${PN}-misc-native is not in the manifest
|
||||
rprovides.append(pn + '-misc-native')
|
||||
|
||||
Reference in New Issue
Block a user