svn commit: r525507 - head/multimedia/x265

Mikhail Teterin mi at FreeBSD.org
Fri Feb 7 20:42:54 UTC 2020


Author: mi
Date: Fri Feb  7 20:42:53 2020
New Revision: 525507
URL: https://svnweb.freebsd.org/changeset/ports/525507

Log:
  Do not try to use assembly on ARM the platforms. There is no assembly
  code for the arch, and test-harness wouldn't compile on it.
  
  Reported by:	jbeich

Modified:
  head/multimedia/x265/Makefile

Modified: head/multimedia/x265/Makefile
==============================================================================
--- head/multimedia/x265/Makefile	Fri Feb  7 20:40:52 2020	(r525506)
+++ head/multimedia/x265/Makefile	Fri Feb  7 20:42:53 2020	(r525507)
@@ -18,10 +18,9 @@ COMMENT=	H.265/High Efficiency Video Coding (HEVC) for
 LICENSE=	GPLv2+
 LICENSE_FILE=	${WRKSRC:H}/COPYING
 
-.for a in amd64 i386 aarch64 armv6 armv7
-BUILD_DEPENDS_$a=	nasm:devel/nasm
-.endfor
 BUILD_DEPENDS=	${BUILD_DEPENDS_${ARCH}}
+BUILD_DEPENDS_amd64=	nasm:devel/nasm
+BUILD_DEPENDS_i386=	nasm:devel/nasm
 
 USES=		cmake compiler:c++14-lang pathfix
 


More information about the svn-ports-all mailing list