summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/meta/dummy-sdk-package.inc
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2018-12-05 17:31:32 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-01-03 12:35:54 +0000
commitd4e27863f3874fb7dc543eed8dcf6a8c4d146fb5 (patch)
treed4684c6c53d28392daa3cb7f1ff01406bd3db4f1 /meta/recipes-core/meta/dummy-sdk-package.inc
parentc191e5b82b43dfe327f440bd482a4a3ed36bb146 (diff)
downloadpoky-d4e27863f3874fb7dc543eed8dcf6a8c4d146fb5.tar.gz
nativesdk-*-provides-dummy: Fixes to allow correct operation with opkg
opkg needs the replaces/conflicts/provides in order for this package to function as intended. When enabled, this code caused failures for core-image-sato -c populate_sdk. The reason is that nativesdk-autoconf has several perl dependencies. We need to list more of the things which this package provides/conflicts with in order for it to function correctly. Therefore add the missing entries. (From OE-Core rev: 27412b377dda47daa87bfcb3a41babe53ff8b0a3) (From OE-Core rev: e0db1beb6db624b3b743e780c298c63a1e177cfb) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/meta/dummy-sdk-package.inc')
-rw-r--r--meta/recipes-core/meta/dummy-sdk-package.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-core/meta/dummy-sdk-package.inc b/meta/recipes-core/meta/dummy-sdk-package.inc
index eafcb823ab..4d653706b1 100644
--- a/meta/recipes-core/meta/dummy-sdk-package.inc
+++ b/meta/recipes-core/meta/dummy-sdk-package.inc
@@ -20,7 +20,7 @@ PR[vardeps] += "DUMMYPROVIDES"
20python populate_packages_prepend() { 20python populate_packages_prepend() {
21 p = d.getVar("PN") 21 p = d.getVar("PN")
22 d.appendVar("RPROVIDES_%s" % p, "${DUMMYPROVIDES}") 22 d.appendVar("RPROVIDES_%s" % p, "${DUMMYPROVIDES}")
23 #d.appendVar("RCONFLICTS_%s" % p, "${DUMMYPROVIDES}") 23 d.appendVar("RCONFLICTS_%s" % p, "${DUMMYPROVIDES}")
24 #d.appendVar("RREPLACES_%s" % p, "${DUMMYPROVIDES}") 24 d.appendVar("RREPLACES_%s" % p, "${DUMMYPROVIDES}")
25} 25}
26 26