svn commit: r490384 - head/math/metis

Steve Wills swills at FreeBSD.org
Tue Jan 15 16:17:12 UTC 2019


Author: swills
Date: Tue Jan 15 16:17:11 2019
New Revision: 490384
URL: https://svnweb.freebsd.org/changeset/ports/490384

Log:
  math/metis: fix arch conditionals
  
  Reported by:	linimon
  Pointyhat to:	swills

Modified:
  head/math/metis/Makefile   (contents, props changed)

Modified: head/math/metis/Makefile
==============================================================================
--- head/math/metis/Makefile	Tue Jan 15 15:05:33 2019	(r490383)
+++ head/math/metis/Makefile	Tue Jan 15 16:17:11 2019	(r490384)
@@ -67,7 +67,7 @@ pre-configure:
 	${WRKSRC}/GKlib/GKlibSystem.cmake
 	@${REINPLACE_CMD} -e "\|/home/karypis/|d" \
 	${WRKSRC}/programs/CMakeLists.txt
-.if ((${ARCH}=="amd64") || (${ARCH}=="aarch64") || (${ARCH}=="sparc64") || (${ARCH}=="ppc64") || (${ARCH}=="ia64"))
+.if ((${ARCH}=="amd64") || (${ARCH}=="aarch64") || (${ARCH}=="sparc64") || (${ARCH}=="powerpc64"))
 	@${REINPLACE_CMD}-e \
 		's|IDXTYPEWIDTH 32|IDXTYPEWIDTH 64|' \
 		${WRKSRC}/include/metis.h


More information about the svn-ports-head mailing list