crypto-ipsecmb: bump to intel-ipsec-mb version 0.55
[vpp.git] / build / external / patches / ipsec-mb_0.55 / 0001-nasm-ver-check-fix.patch
1 diff --git a/lib/Makefile b/lib/Makefile
2 index 3831172..9ce6f4c 100644
3 --- a/lib/Makefile
4 +++ b/lib/Makefile
5 @@ -51,7 +51,7 @@ YASM ?= yasm
6  NASM ?= nasm
7  
8  # Detect NASM version (minimum version required: 2.14)
9 -NASM_VERSION = $(shell nasm -v | cut -d " " -f 3)
10 +NASM_VERSION = $(shell $(NASM) -v | cut -d " " -f 3)
11  
12  NASM_MAJOR_REQ = 2
13  NASM_MINOR_REQ = 14