]> code.ossystems Code Review - openembedded-core.git/commitdiff
binutils: drop UPSTREAM_VERSION_UNKNOWN
authorAlexander Kanavin <alex.kanavin@gmail.com>
Wed, 2 Oct 2019 12:00:26 +0000 (14:00 +0200)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 2 Oct 2019 13:41:22 +0000 (14:41 +0100)
As there is now a new version of binutils,
upstream version check works again.

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/recipes-devtools/binutils/binutils-2.32.inc

index d3c52936d169b63679b3ab796bf886df6d2dea04..19baf8a88397b099aa33d7aa691210f3b8252e35 100644 (file)
@@ -14,11 +14,8 @@ def binutils_branch_version(d):
     pvsplit = d.getVar('PV').split('.')
     return pvsplit[0] + "_" + pvsplit[1]
 
-# Actual upstream version is 2.32 (without the .0), so we have to set
-# UPSTREAM_VERSION_UNKNOWN to avoid the version check failure. The line can
-# be removed when a new version of binutils is released (if the PV is then
-# correctly set to match the upstream version tag).
-UPSTREAM_VERSION_UNKNOWN = "1"
+# When upgrading to 2.33, please make sure there is no trailing .0, so
+# that upstream version check can work correctly.
 PV = "2.32.0"
 CVE_VERSION = "2.32"
 BINUPV = "${@binutils_branch_version(d)}"