diff options
author | Fabrice Fontaine <fontaine.fabrice@gmail.com> | 2024-04-26 10:51:16 +0200 |
---|---|---|
committer | Robert Marko <robimarko@gmail.com> | 2024-04-27 12:08:11 +0200 |
commit | 832460b452d840451adf44713e90515fc61c88ab (patch) | |
tree | 94ef55394ee192df42b3624fc872a93affb068dc | |
parent | e9ecaade6f1f9bd821523a3b731bfaaf5ab5ca35 (diff) | |
download | openwrt-832460b452d840451adf44713e90515fc61c88ab.tar.gz openwrt-832460b452d840451adf44713e90515fc61c88ab.tar.bz2 openwrt-832460b452d840451adf44713e90515fc61c88ab.zip |
tools/flex: fix PKG_CPE_ID
cpe:/a:westes:flex is the correct CPE ID for flex:
https://nvd.nist.gov/products/cpe/search/results?keyword=cpe:2.3:a:westes:flex
Fixes: c61a2395140d92cdd37d3d6ee43a765427e8e318 (add PKG_CPE_ID ids to package and tools)
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
-rw-r--r-- | tools/flex/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/flex/Makefile b/tools/flex/Makefile index 86ba5a4415..177136b78c 100644 --- a/tools/flex/Makefile +++ b/tools/flex/Makefile @@ -7,7 +7,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=flex -PKG_CPE_ID:=cpe:/a:flex_project:flex +PKG_CPE_ID:=cpe:/a:westes:flex PKG_VERSION:=2.6.4 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz |