Skip to content

Commit

Permalink
devel/concurrencpp: fix build on powerpc64 and powerpc on 13.0-RELEASE
Browse files Browse the repository at this point in the history
Same issue as on powerpc64le.
  • Loading branch information
pkubaj committed Jan 22, 2022
1 parent 6d827e6 commit 8e82cdf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion devel/concurrencpp/Makefile
Expand Up @@ -20,7 +20,7 @@ CMAKE_ON= BUILD_SHARED_LIBS

.include <bsd.port.options.mk>

.if ${ARCH} == powerpc64le && ${OSVERSION} < 1300523
.if (${ARCH} == powerpc64le || ${ARCH} == powerpc64 || ${ARCH} == powerpc) && ${OSVERSION} < 1300523
BUILD_DEPENDS= llvm13>0:devel/llvm13
CPP= ${LOCALBASE}/bin/clang-cpp13
CC= ${LOCALBASE}/bin/clang13
Expand Down

0 comments on commit 8e82cdf

Please sign in to comment.