git: 697f244f788f - main - net-p2p/mldonkey: fix build on powerpc
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 17 Jan 2025 21:47:37 UTC
The branch main has been updated by pkubaj:
URL: https://cgit.FreeBSD.org/ports/commit/?id=697f244f788f6c912fd25961cd09ee8b56dcefa6
commit 697f244f788f6c912fd25961cd09ee8b56dcefa6
Author: Piotr Kubaj <pkubaj@FreeBSD.org>
AuthorDate: 2025-01-17 16:45:53 +0000
Commit: Piotr Kubaj <pkubaj@FreeBSD.org>
CommitDate: 2025-01-17 21:46:07 +0000
net-p2p/mldonkey: fix build on powerpc
---
net-p2p/mldonkey/Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-p2p/mldonkey/Makefile b/net-p2p/mldonkey/Makefile
index 44a4610a2079..def8c660c5c0 100644
--- a/net-p2p/mldonkey/Makefile
+++ b/net-p2p/mldonkey/Makefile
@@ -16,7 +16,7 @@ BUILD_DEPENDS= ${LOCALBASE}/lib/ocaml/nums.cma:math/ocaml-num
USES= compiler:c++11-lang cpe gmake iconv ocaml:camlp4 pkgconfig tar:bzip2
ARCH!= uname -p
-.if ${ARCH} == i386
+.if ${ARCH} == i386 || ${ARCH} == powerpc
# `as' is used to compile src/utils/lib/md4_i386.s
USE_BINUTILS= yes
.endif