diff options
author | Alexander Kanavin <alex.kanavin@gmail.com> | 2019-10-02 14:00:26 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-10-02 20:22:25 +0100 |
commit | e66afddf41f680158845d65efcd4506b89a55199 (patch) | |
tree | aea10ec9c40d86e29de7d98476b8aaba26647535 /meta/recipes-devtools/binutils | |
parent | e1c173621a47112c034c447ea137531ea1af9031 (diff) | |
download | poky-e66afddf41f680158845d65efcd4506b89a55199.tar.gz |
binutils: drop UPSTREAM_VERSION_UNKNOWN
As there is now a new version of binutils,
upstream version check works again.
(From OE-Core rev: c63c7fb890ab356c747d6948ca9e13e0c3b83dfb)
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/binutils')
-rw-r--r-- | meta/recipes-devtools/binutils/binutils-2.32.inc | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/meta/recipes-devtools/binutils/binutils-2.32.inc b/meta/recipes-devtools/binutils/binutils-2.32.inc index d3c52936d1..19baf8a883 100644 --- a/meta/recipes-devtools/binutils/binutils-2.32.inc +++ b/meta/recipes-devtools/binutils/binutils-2.32.inc | |||
@@ -14,11 +14,8 @@ def binutils_branch_version(d): | |||
14 | pvsplit = d.getVar('PV').split('.') | 14 | pvsplit = d.getVar('PV').split('.') |
15 | return pvsplit[0] + "_" + pvsplit[1] | 15 | return pvsplit[0] + "_" + pvsplit[1] |
16 | 16 | ||
17 | # Actual upstream version is 2.32 (without the .0), so we have to set | 17 | # When upgrading to 2.33, please make sure there is no trailing .0, so |
18 | # UPSTREAM_VERSION_UNKNOWN to avoid the version check failure. The line can | 18 | # that upstream version check can work correctly. |
19 | # be removed when a new version of binutils is released (if the PV is then | ||
20 | # correctly set to match the upstream version tag). | ||
21 | UPSTREAM_VERSION_UNKNOWN = "1" | ||
22 | PV = "2.32.0" | 19 | PV = "2.32.0" |
23 | CVE_VERSION = "2.32" | 20 | CVE_VERSION = "2.32" |
24 | BINUPV = "${@binutils_branch_version(d)}" | 21 | BINUPV = "${@binutils_branch_version(d)}" |