diff options
author | Piotr Kubaj <pkubaj@FreeBSD.org> | 2021-03-11 02:54:17 +0000 |
---|---|---|
committer | Piotr Kubaj <pkubaj@FreeBSD.org> | 2021-03-11 02:54:17 +0000 |
commit | e55a2636843e35ba909339aac099af689d7d80cd (patch) | |
tree | 1f730604e676bd7d0143c40982fdc64b450941eb | |
parent | - Update to 19.1.11 (diff) |
games/re3: fix build on i386
lld can't link this port.
-rw-r--r-- | games/re3/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/games/re3/Makefile b/games/re3/Makefile index 69cf4a13f6ab..40244f261362 100644 --- a/games/re3/Makefile +++ b/games/re3/Makefile @@ -34,6 +34,12 @@ PLIST_FILES= bin/${PORTNAME} PORTDATA= * SUB_FILES= ${PORTNAME} +.include <bsd.port.options.mk> + +.if ${ARCH} == i386 +LLD_UNSAFE= yes +.endif + post-extract: ${MV} ${WRKSRC_librw}/* ${WRKSRC}/vendor/librw ${MV} ${WRKSRC_ogg}/* ${WRKSRC}/vendor/ogg |