Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 22 Jun 2026 09:30:12 +0000
From:      Robert Clausecker <fuz@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: dc486d439f82 - main - math/slatec: fix installation
Message-ID:  <6a3900a4.46876.2b646a7a@gitrepo.freebsd.org>

index | next in thread | raw e-mail

The branch main has been updated by fuz:

URL: https://cgit.FreeBSD.org/ports/commit/?id=dc486d439f829b95b71be83052a2fb4bdf5a8a75

commit dc486d439f829b95b71be83052a2fb4bdf5a8a75
Author:     Robert Clausecker <fuz@FreeBSD.org>
AuthorDate: 2026-06-21 13:46:34 +0000
Commit:     Robert Clausecker <fuz@FreeBSD.org>
CommitDate: 2026-06-22 08:41:45 +0000

    math/slatec: fix installation
    
    Port uses <bsd.lib.mk>, which desires STRIP=${STRIP}, but we have
    started to set STRIP=${STRIP_CMD} in MAKE_ENV a while ago.
    Override this bogus setting in MAKE_ARGS to fix installation.
    
    MFH:            2026Q2
    See also:       D55509
---
 math/slatec/Makefile | 1 +
 1 file changed, 1 insertion(+)

diff --git a/math/slatec/Makefile b/math/slatec/Makefile
index 5b2e2ec45ead..6e2bad9ca2b3 100644
--- a/math/slatec/Makefile
+++ b/math/slatec/Makefile
@@ -29,6 +29,7 @@ LDADD ?=	-lgfortran -lm
 SRCCONF=	/dev/null
 MAKE_ENV+=	LDADD="${LDADD}" SHLIB_MAJOR="${SHLIB_MAJOR}" \
 		SRCCONF="${SRCCONF}"
+MAKE_ARGS+=	STRIP=${STRIP}
 FFLAGS+=	-std=legacy
 
 # ld.bfd supports neither -z relro nor -z norelro on armv7


home | help

Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?6a3900a4.46876.2b646a7a>