From bc87c6e2da6cef96793e62e78875e3e3781ed1b1 Mon Sep 17 00:00:00 2001 From: Fabian Keil Date: Wed, 27 Oct 2021 19:28:57 +0200 Subject: [PATCH 248/325] sys/modules/Makefile: Only build qatfw if MK_SOURCELESS_UCODE is enabled Obtained from: ElectroBSD --- sys/modules/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sys/modules/Makefile b/sys/modules/Makefile index 67acc3369a1e..9aa16f2bd725 100644 --- a/sys/modules/Makefile +++ b/sys/modules/Makefile @@ -667,7 +667,9 @@ _ndis= ndis _ocs_fc= ocs_fc _pccard= pccard _qat= qat +.if ${MK_SOURCELESS_UCODE} != "no" _qatfw= qatfw +.endif .if ${MK_OFED} != "no" || defined(ALL_MODULES) _rdma= rdma .endif -- 2.32.0