diff options
author | Piotr Kubaj <pkubaj@FreeBSD.org> | 2021-01-02 00:52:26 +0800 |
---|---|---|
committer | Piotr Kubaj <pkubaj@FreeBSD.org> | 2021-01-02 00:52:26 +0800 |
commit | 18e7fa784736b3b92a12299d46212b40b3a78072 (patch) | |
tree | 540152a585ebfc433f9417942d8145270e0e89fb /math | |
parent | ac6da3da60fdcdbbe818841ab53a9434cf4787fd (diff) | |
download | freebsd-ports-gnome-18e7fa784736b3b92a12299d46212b40b3a78072.tar.gz freebsd-ports-gnome-18e7fa784736b3b92a12299d46212b40b3a78072.tar.zst freebsd-ports-gnome-18e7fa784736b3b92a12299d46212b40b3a78072.zip |
math/openlibm: fix build on powerpc64le
Diffstat (limited to 'math')
-rw-r--r-- | math/openlibm/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/math/openlibm/Makefile b/math/openlibm/Makefile index e4471562abe3..97b00b7948a5 100644 --- a/math/openlibm/Makefile +++ b/math/openlibm/Makefile @@ -29,7 +29,7 @@ USE_LDCONFIG= yes .include <bsd.port.options.mk> -.if ${ARCH} == powerpc64 +.if ${ARCH:Mpowerpc64*} USES+= compiler:gcc-c++11-lib .else USES+= compiler:c11 |