Module Name:    src
Committed By:   riastradh
Date:           Mon Jun 10 12:49:30 UTC 2024

Modified Files:
        src/lib/libm: Makefile

Log Message:
libm: Fix arm expected symbol list harder.

LIB is not defined by the time we need it in the m.expsym rule, so
just say m here like in the other lines.


To generate a diff of this commit:
cvs rdiff -u -r1.237 -r1.238 src/lib/libm/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/lib/libm/Makefile
diff -u src/lib/libm/Makefile:1.237 src/lib/libm/Makefile:1.238
--- src/lib/libm/Makefile:1.237	Mon Jun 10 12:47:40 2024
+++ src/lib/libm/Makefile	Mon Jun 10 12:49:29 2024
@@ -1,4 +1,4 @@
-#  $NetBSD: Makefile,v 1.237 2024/06/10 12:47:40 riastradh Exp $
+#  $NetBSD: Makefile,v 1.238 2024/06/10 12:49:29 riastradh Exp $
 #
 #  @(#)Makefile 5.1beta 93/09/24
 #
@@ -113,7 +113,7 @@ EXPSYM_SRCS=	m.common.expsym m.ieee754.e
 .PATH.c: ${.CURDIR}/arch/arm
 .if ${MKSOFTFLOAT} == "no"
 COMMON_SRCS+= fenv.c
-EXPSYM_SRC_MD=	${LIB}.armhf.expsym
+EXPSYM_SRC_MD=	m.armhf.expsym
 .endif
 .for f in fenv.c lrint.S lrintf.S s_fabsf.S s_fma.S s_fmaf.S
 COPTS.$f +=	-mfpu=vfp

Reply via email to