diff options
| author | Gyorgy Sarvari <skandigraun@gmail.com> | 2026-01-08 08:46:14 +0100 |
|---|---|---|
| committer | Gyorgy Sarvari <skandigraun@gmail.com> | 2026-01-08 22:03:03 +0100 |
| commit | 61ca38f45d6562bc037553032b1d8ae33454bef1 (patch) | |
| tree | f6d0444f9703e7603e9b1412cbfadd3fc13c5278 | |
| parent | ab68fc6dd91fb6272353da21cd0fb191fbf58507 (diff) | |
| download | meta-openembedded-61ca38f45d6562bc037553032b1d8ae33454bef1.tar.gz | |
openflow: don't overwrite CVE_CHECK_IGNORE
The recipe contains two CVE_CHECK_IGNORE declarations, and the second
one overwrites the first one - however the first one is also important.
Instead of overwriting it, just append them to each other. Also, move the
operations closer to each other, so it's easier to see what's going on.
Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com>
| -rw-r--r-- | meta-networking/recipes-protocols/openflow/openflow.inc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/meta-networking/recipes-protocols/openflow/openflow.inc b/meta-networking/recipes-protocols/openflow/openflow.inc index 3c29a5c8cf..2134b57713 100644 --- a/meta-networking/recipes-protocols/openflow/openflow.inc +++ b/meta-networking/recipes-protocols/openflow/openflow.inc | |||
| @@ -18,6 +18,10 @@ CVE_CHECK_IGNORE = "\ | |||
| 18 | CVE-2015-1612 \ | 18 | CVE-2015-1612 \ |
| 19 | " | 19 | " |
| 20 | 20 | ||
| 21 | # This CVE is not for this product but cve-check assumes it is | ||
| 22 | # because two CPE collides when checking the NVD database | ||
| 23 | CVE_CHECK_IGNORE += "CVE-2018-1078" | ||
| 24 | |||
| 21 | DEPENDS = "virtual/libc" | 25 | DEPENDS = "virtual/libc" |
| 22 | 26 | ||
| 23 | PACKAGECONFIG ??= "" | 27 | PACKAGECONFIG ??= "" |
| @@ -58,7 +62,3 @@ do_install:append() { | |||
| 58 | } | 62 | } |
| 59 | 63 | ||
| 60 | FILES:${PN} += "${nonarch_libdir}/tmpfiles.d" | 64 | FILES:${PN} += "${nonarch_libdir}/tmpfiles.d" |
| 61 | |||
| 62 | # This CVE is not for this product but cve-check assumes it is | ||
| 63 | # because two CPE collides when checking the NVD database | ||
| 64 | CVE_CHECK_IGNORE = "CVE-2018-1078" | ||
