Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 3 Jan 2021 05:09:55 +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: r559989 - head/graphics/osgearth
Message-ID:  <202101030509.10359tSK023750@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pkubaj
Date: Sun Jan  3 05:09:55 2021
New Revision: 559989
URL: https://svnweb.freebsd.org/changeset/ports/559989

Log:
  graphics/osgearth: fix build on powerpc64le
  
  Same issue as on powerpc64.

Modified:
  head/graphics/osgearth/Makefile

Modified: head/graphics/osgearth/Makefile
==============================================================================
--- head/graphics/osgearth/Makefile	Sun Jan  3 03:56:17 2021	(r559988)
+++ head/graphics/osgearth/Makefile	Sun Jan  3 05:09:55 2021	(r559989)
@@ -39,7 +39,7 @@ PLIST_SUB=	PORTVERSION=${PORTVERSION}
 
 .include <bsd.port.options.mk>
 
-.if ${ARCH} == powerpc64
+.if ${ARCH:Mpowerpc64*}
 CXXFLAGS+=	-DNO_WARN_X86_INTRINSICS -maltivec -mvsx
 USES+=		compiler:gcc-c++11-lib
 .else



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