diff options
author | Piotr Kubaj <pkubaj@FreeBSD.org> | 2021-04-06 12:23:12 +0000 |
---|---|---|
committer | Piotr Kubaj <pkubaj@FreeBSD.org> | 2021-04-06 12:23:12 +0000 |
commit | 8ae6e04d5276119ae82e069b9ed2d29aa2a8a612 (patch) | |
tree | 91bd030f86576d9de99223f427d1968613429662 | |
parent | 7ccc9759e758d2d0d5a58f4290da1b01842c18f0 (diff) | |
download | ports-8ae6e04d5276119ae82e069b9ed2d29aa2a8a612.tar.gz ports-8ae6e04d5276119ae82e069b9ed2d29aa2a8a612.zip |
net-im/uTox: fix build on powerpc64le
Use correct emulation.
-rw-r--r-- | net-im/uTox/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net-im/uTox/Makefile b/net-im/uTox/Makefile index af6053873f68..4eea7d5487ac 100644 --- a/net-im/uTox/Makefile +++ b/net-im/uTox/Makefile @@ -47,7 +47,7 @@ _LLD_EMUL_armv7= armelf_fbsd _LLD_EMUL_i386= elf_i386_fbsd _LLD_EMUL_powerpc= elf32ppc_fbsd _LLD_EMUL_powerpc64= elf64ppc_fbsd -_LLD_EMUL_powerpc64le= elf64ppc_fbsd +_LLD_EMUL_powerpc64le= elf64lppc_fbsd post-patch: @${REINPLACE_CMD} 's,[[:<:]]ld[[:>:]],ld -m${_LLD_EMUL_${ARCH}},' \ |