From 15a8a7db18472de1e04548b67a07ed05e45c50a4 Mon Sep 17 00:00:00 2001 From: Fabian Keil Date: Wed, 27 Oct 2021 19:28:57 +0200 Subject: [PATCH 219/310] 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 7d4684d6bc00..dafb9fbbf3ec 100644 --- a/sys/modules/Makefile +++ b/sys/modules/Makefile @@ -700,7 +700,9 @@ _ntb= ntb _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.37.1