diff options
author | Adrian Bunk <bunk@stusta.de> | 2020-02-29 11:51:04 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-02-29 21:47:30 +0000 |
commit | 21e6e7ae08f1fc1995d369c1273722488e47514c (patch) | |
tree | 696020cc34c556e024227b9c4a5f7e0d41246843 | |
parent | 0a229e70455c4638ee428db261c6e490a355b35c (diff) | |
download | poky-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>
-rw-r--r-- | meta/recipes-core/ncurses/ncurses_6.2.bb | 3 |
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" | |||
10 | EXTRA_OECONF += "--with-abi-version=5 --cache-file=${B}/config.cache" | 10 | EXTRA_OECONF += "--with-abi-version=5 --cache-file=${B}/config.cache" |
11 | UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>\d+(\.\d+)+(\+\d+)*)" | 11 | UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>\d+(\.\d+)+(\+\d+)*)" |
12 | 12 | ||
13 | CVE_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]}" | ||