From c44ca4c227f7e49bbaf42c014b8bd307b1a94094 Mon Sep 17 00:00:00 2001 From: Gleb Popov Date: Fri, 9 Sep 2022 10:48:48 +0300 Subject: [PATCH] msun/Makefile: Fix conditional and unbreak the build. Approved by: imp Fixes: 20adba8bc1beb125d5e5ed8f12e747ae79ca6a10 --- lib/msun/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/msun/Makefile b/lib/msun/Makefile index e65e9401cdbf..8cb67f3700b9 100644 --- a/lib/msun/Makefile +++ b/lib/msun/Makefile @@ -151,7 +151,7 @@ COMMON_SRCS+= catrig.c catrigf.c \ #COMMON_SRCS+= s_fabs.c s_frexp.c s_isnan.c s_ldexp.c s_modf.c # Exclude the generic versions of what we provide in the MD area. -.if defined(ARCH_SRCS) && ${MK_MACHDEP_OPTIMIZATIONS} != no +.if defined(ARCH_SRCS) && "${MK_MACHDEP_OPTIMIZATIONS}" != no .for i in ${ARCH_SRCS} COMMON_SRCS:= ${COMMON_SRCS:N${i:R}.c} .endfor