Date: Tue, 15 Jan 2019 16:17:12 +0000 (UTC) From: Steve Wills <swills@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r490384 - head/math/metis Message-ID: <201901151617.x0FGHC8M044152@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201901151617.x0FGHC8M044152>