Date: Sat, 20 Nov 2021 15:12:45 GMT From: Piotr Kubaj <pkubaj@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: 89f069812e99 - main - math/muparser: fix build on armv7 Message-ID: <202111201512.1AKFCjXc010283@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by pkubaj: URL: https://cgit.FreeBSD.org/ports/commit/?id=89f069812e99a481c5425ae75ff234c678411fe7 commit 89f069812e99a481c5425ae75ff234c678411fe7 Author: Piotr Kubaj <pkubaj@FreeBSD.org> AuthorDate: 2021-11-20 15:07:28 +0000 Commit: Piotr Kubaj <pkubaj@FreeBSD.org> CommitDate: 2021-11-20 15:07:28 +0000 math/muparser: fix build on armv7 Same issue as on powerpc. --- math/muparser/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/math/muparser/Makefile b/math/muparser/Makefile index 3e0b00ecab2a..52285e44da55 100644 --- a/math/muparser/Makefile +++ b/math/muparser/Makefile @@ -25,7 +25,7 @@ EXAMPLES_PORTEXAMPLES= * .include <bsd.port.options.mk> -.if ${ARCH} == powerpc +.if ${ARCH} == armv7 || ${ARCH} == powerpc USES+= compiler:gcc-c++11-lib .else USES+= compiler:c++11-lang
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202111201512.1AKFCjXc010283>