Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 3 Oct 2020 00:20:11 +0000 (UTC)
From:      Piotr Kubaj <pkubaj@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r551242 - head/games/tome4
Message-ID:  <202010030020.0930KB22041050@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202010030020.0930KB22041050>