svn commit: r551242 - head/games/tome4

Piotr Kubaj pkubaj at FreeBSD.org
Sat Oct 3 00:20:11 UTC 2020


Author: pkubaj
Date: Sat Oct  3 00:20:11 2020
New Revision: 551242
URL: https://svnweb.freebsd.org/changeset/ports/551242

Log:
  games/tome4: fix build on powerpc64le
  
  Luajit also doesn't work on powerpc64le.

Modified:
  head/games/tome4/Makefile

Modified: head/games/tome4/Makefile
==============================================================================
--- head/games/tome4/Makefile	Fri Oct  2 23:00:45 2020	(r551241)
+++ head/games/tome4/Makefile	Sat Oct  3 00:20:11 2020	(r551242)
@@ -40,7 +40,7 @@ LDFLAGS_i386=	-Wl,-znotext
 
 pre-build:
 	@${REINPLACE_CMD} 's|%%LOCALBASE%%|${LOCALBASE}|' ${WRKSRC}/premake4.lua
-.if ${ARCH} == aarch64 || ${ARCH} == powerpc64
+.if ${ARCH} == aarch64 || ${ARCH:Mpowerpc64*}
 	(cd ${WRKSRC} && premake4 --lua=default gmake)
 .else
 	(cd ${WRKSRC} && premake4 gmake)


More information about the svn-ports-all mailing list