wireguard: prevent segfault on non-adj packets
[vpp.git] / build / external / patches / ipsec-mb_0.54 / 0001-nasm-ver-check.patch
1 diff --git a/Makefile b/Makefile
2 index 329da9f..c7fa8ad 100644
3 --- a/Makefile
4 +++ b/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