Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 9 Sep 2022 08:07:52 GMT
From:      Gleb Popov <arrowd@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: c44ca4c227f7 - main - msun/Makefile: Fix conditional and unbreak the build. Approved by:	imp Fixes:	20adba8bc1beb125d5e5ed8f12e747ae79ca6a10
Message-ID:  <202209090807.28987qxN055349@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by arrowd (ports committer):

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

commit c44ca4c227f7e49bbaf42c014b8bd307b1a94094
Author:     Gleb Popov <arrowd@FreeBSD.org>
AuthorDate: 2022-09-09 07:48:48 +0000
Commit:     Gleb Popov <arrowd@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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202209090807.28987qxN055349>