diff options
-rw-r--r-- | meta-poky/classes/poky-bleeding.bbclass | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/meta-poky/classes/poky-bleeding.bbclass b/meta-poky/classes/poky-bleeding.bbclass index 3bfdcf1454..b12aea61b0 100644 --- a/meta-poky/classes/poky-bleeding.bbclass +++ b/meta-poky/classes/poky-bleeding.bbclass | |||
@@ -12,6 +12,11 @@ python pokybleeding_version_handler () { | |||
12 | if "pseudo" in bpn: | 12 | if "pseudo" in bpn: |
13 | bb.warn("Here 5 %s %s" % (d.getVar("PN"), bpn)) | 13 | bb.warn("Here 5 %s %s" % (d.getVar("PN"), bpn)) |
14 | d.setVar("SRCREV", "${AUTOREV}") | 14 | d.setVar("SRCREV", "${AUTOREV}") |
15 | srcrev_format = d.getVar("SRCREV_FORMAT") | ||
16 | if srcrev_format: | ||
17 | for multi_scm in d.getVar("SRCREV_FORMAT").split("_"): | ||
18 | if multi_scm != "": | ||
19 | d.setVar("SRCREV_%s" % multi_scm, "${AUTOREV}") | ||
15 | if "+git" not in d.getVar("PV"): | 20 | if "+git" not in d.getVar("PV"): |
16 | d.appendVar("PV", "+git") | 21 | d.appendVar("PV", "+git") |
17 | } | 22 | } |