mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-27 15:33:28 +08:00
package/chartjs: move 'v' version prefix out of CHARTJS_VERSION
chartjs 2.9.3 has a security vulnerability (CVE-2020-7746) which is not detected by the CVE scripts, presumably because our version variable starts with a 'v'. Move that 'v' prefix out of the version variable to fix that. Signed-off-by: Thomas De Schampheleire <thomas.de_schampheleire@nokia.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
dbe6870a4c
commit
0244b11597
@ -1,3 +1,3 @@
|
||||
# Locally computed:
|
||||
sha256 8079d8fd39131fcfaec33f1c7799412bcf8e051e25b10bd6e37fc16159417aa1 chartjs-v2.9.3.tar.gz
|
||||
sha256 8079d8fd39131fcfaec33f1c7799412bcf8e051e25b10bd6e37fc16159417aa1 chartjs-2.9.3.tar.gz
|
||||
sha256 7b43caae91f31b18dc81fae6e0f7aa1acbecaa6d84e3249905cbe15308307d67 LICENSE.md
|
||||
|
@ -4,8 +4,8 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
CHARTJS_VERSION = v2.9.3
|
||||
CHARTJS_SITE = $(call github,chartjs,Chart.js,$(CHARTJS_VERSION))
|
||||
CHARTJS_VERSION = 2.9.3
|
||||
CHARTJS_SITE = $(call github,chartjs,Chart.js,v$(CHARTJS_VERSION))
|
||||
CHARTJS_LICENSE = MIT
|
||||
CHARTJS_LICENSE_FILES = LICENSE.md
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user