The branch main has been updated by arrowd (ports committer):

URL: 
https://cgit.FreeBSD.org/src/commit/?id=c44ca4c227f7e49bbaf42c014b8bd307b1a94094

commit c44ca4c227f7e49bbaf42c014b8bd307b1a94094
Author:     Gleb Popov <arr...@freebsd.org>
AuthorDate: 2022-09-09 07:48:48 +0000
Commit:     Gleb Popov <arr...@freebsd.org>
CommitDate: 2022-09-09 08:07:33 +0000

    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

Reply via email to