diff options
author | Fabrice Fontaine <fontaine.fabrice@gmail.com> | 2024-04-26 10:41:15 +0200 |
---|---|---|
committer | Robert Marko <robimarko@gmail.com> | 2024-04-27 12:08:41 +0200 |
commit | e1ca08518e96ccf088119fbc9930c5e4beef86cc (patch) | |
tree | 40620702b841070a0c04f1082059e8ae46fa68d0 /toolchain | |
parent | 832460b452d840451adf44713e90515fc61c88ab (diff) | |
download | openwrt-e1ca08518e96ccf088119fbc9930c5e4beef86cc.tar.gz openwrt-e1ca08518e96ccf088119fbc9930c5e4beef86cc.tar.bz2 openwrt-e1ca08518e96ccf088119fbc9930c5e4beef86cc.zip |
toolchain/nasm: fix PKG_CPE_ID
cpe:/a:nasm:netwide_assembler is the correct CPE ID for nasm:
https://nvd.nist.gov/products/cpe/search/results?keyword=cpe:2.3:a:nasm:netwide_assembler
Fixes: bcf02c5d3123a99c717ca33f1d7c6250acf0f33f (toolchain: assign PKG_CPE_ID)
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Diffstat (limited to 'toolchain')
-rw-r--r-- | toolchain/nasm/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolchain/nasm/Makefile b/toolchain/nasm/Makefile index 27cd476419..bdca35b7fc 100644 --- a/toolchain/nasm/Makefile +++ b/toolchain/nasm/Makefile @@ -10,7 +10,7 @@ PKG_VERSION:=2.16.01 PKG_SOURCE_URL:=https://www.nasm.us/pub/nasm/releasebuilds/$(PKG_VERSION)/ PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz PKG_HASH:=c77745f4802375efeee2ec5c0ad6b7f037ea9c87c92b149a9637ff099f162558 -PKG_CPE_ID:=cpe:/a:nasm:nasm +PKG_CPE_ID:=cpe:/a:nasm:netwide_assembler HOST_BUILD_PARALLEL:=1 |