aboutsummaryrefslogtreecommitdiff
path: root/math
diff options
context:
space:
mode:
authorPiotr Kubaj <pkubaj@FreeBSD.org>2021-06-16 09:00:22 +0000
committerPiotr Kubaj <pkubaj@FreeBSD.org>2021-06-16 09:00:22 +0000
commit144966854201eb305efd03adfdf2735194d786f8 (patch)
tree63c9956d179f5fabecf8149dd390203091d6ae69 /math
parente968e4b48f13edf41954971ed6e0d579ecec1998 (diff)
downloadports-144966854201eb305efd03adfdf2735194d786f8.tar.gz
ports-144966854201eb305efd03adfdf2735194d786f8.zip
math/intervaltree: fix build on powerpc
Same issue as on i386.
Diffstat (limited to 'math')
-rw-r--r--math/intervaltree/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/math/intervaltree/Makefile b/math/intervaltree/Makefile
index 79b205bb1924..7bed7fb2dfc7 100644
--- a/math/intervaltree/Makefile
+++ b/math/intervaltree/Makefile
@@ -18,7 +18,7 @@ PLIST_FILES= bin/interval_tree_test include/${PORTNAME}/IntervalTree.h
.include <bsd.port.pre.mk>
-.if ${ARCH} == i386
+.if ${ARCH} == i386 || ${ARCH} == powerpc
post-patch:
${REINPLACE_CMD} -e 's|<bool, unsigned long>|<bool, unsigned int>|g' \
${WRKSRC}/interval_tree_test.cpp