git: 89f069812e99 - main - math/muparser: fix build on armv7
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 20 Nov 2021 15:12:45 UTC
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