summaryrefslogtreecommitdiffstats
path: root/meta/classes-recipe/devupstream.bbclass
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2023-08-11 14:31:24 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-08-24 16:50:24 +0100
commit65318019cd8c6db19ae5d4526a0fa2d8c8ef25fa (patch)
tree7b97ae9eab7fecb7663c563327e608673d6d2a25 /meta/classes-recipe/devupstream.bbclass
parent62afa02d01794376efab75623f42e7e08af08526 (diff)
downloadpoky-65318019cd8c6db19ae5d4526a0fa2d8c8ef25fa.tar.gz
recipes/classes/scripts: Drop SRCPV usage in OE-Core
Now that SRCPV isn't needed we can simplify things in a few places... (From OE-Core rev: 843f82a246a535c353e08072f252d1dc78217872) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes-recipe/devupstream.bbclass')
-rw-r--r--meta/classes-recipe/devupstream.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes-recipe/devupstream.bbclass b/meta/classes-recipe/devupstream.bbclass
index 1529cc8fca..d941763fb7 100644
--- a/meta/classes-recipe/devupstream.bbclass
+++ b/meta/classes-recipe/devupstream.bbclass
@@ -46,7 +46,7 @@ python devupstream_virtclass_handler () {
46 pv = d.getVar("PV") 46 pv = d.getVar("PV")
47 proto_marker = "+" + uri.scheme 47 proto_marker = "+" + uri.scheme
48 if proto_marker not in pv and not d.getVar("PV:class-devupstream"): 48 if proto_marker not in pv and not d.getVar("PV:class-devupstream"):
49 d.setVar("PV", pv + proto_marker + "${SRCPV}") 49 d.setVar("PV", pv + proto_marker)
50 50
51 if variant == "native": 51 if variant == "native":
52 pn = d.getVar("PN") 52 pn = d.getVar("PN")