diff options
author | Piotr Kubaj <pkubaj@FreeBSD.org> | 2025-01-17 16:45:53 +0000 |
---|---|---|
committer | Piotr Kubaj <pkubaj@FreeBSD.org> | 2025-01-17 21:46:07 +0000 |
commit | 697f244f788f6c912fd25961cd09ee8b56dcefa6 (patch) | |
tree | abfef3d7ad2d4c3a009b7b946eea75f7f2a12292 | |
parent | 8cf2c65a798ab738a6a170fc11c35e584eb8ea38 (diff) |
net-p2p/mldonkey: fix build on powerpc
-rw-r--r-- | net-p2p/mldonkey/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
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 |