summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/ncurses
diff options
context:
space:
mode:
authorAdrian Bunk <bunk@stusta.de>2020-02-29 11:51:04 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-02-29 21:47:30 +0000
commit21e6e7ae08f1fc1995d369c1273722488e47514c (patch)
tree696020cc34c556e024227b9c4a5f7e0d41246843 /meta/recipes-core/ncurses
parent0a229e70455c4638ee428db261c6e490a355b35c (diff)
downloadpoky-21e6e7ae08f1fc1995d369c1273722488e47514c.tar.gz
ncurses: Comment out version parsing that broke CVE checking
This will be needed again when using patchlevel versions again. Also make it more generic. (From OE-Core rev: 7939288700ad35ed43e5988371e16d5afc594a57) Signed-off-by: Adrian Bunk <bunk@stusta.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/ncurses')
-rw-r--r--meta/recipes-core/ncurses/ncurses_6.2.bb3
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-core/ncurses/ncurses_6.2.bb b/meta/recipes-core/ncurses/ncurses_6.2.bb
index b6d899c878..723e685a9b 100644
--- a/meta/recipes-core/ncurses/ncurses_6.2.bb
+++ b/meta/recipes-core/ncurses/ncurses_6.2.bb
@@ -10,4 +10,5 @@ S = "${WORKDIR}/git"
10EXTRA_OECONF += "--with-abi-version=5 --cache-file=${B}/config.cache" 10EXTRA_OECONF += "--with-abi-version=5 --cache-file=${B}/config.cache"
11UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>\d+(\.\d+)+(\+\d+)*)" 11UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>\d+(\.\d+)+(\+\d+)*)"
12 12
13CVE_VERSION = "6.1.${@d.getVar("PV").split('+')[1]}" 13# This is needed when using patchlevel versions like 6.1+20181013
14#CVE_VERSION = "${@d.getVar("PV").split('+')[0]}.${@d.getVar("PV").split('+')[1]}"