svn commit: r523167 - head/emulators/qemu-sbruno

Piotr Kubaj pkubaj at FreeBSD.org
Wed Jan 15 21:08:42 UTC 2020


Author: pkubaj
Date: Wed Jan 15 21:08:41 2020
New Revision: 523167
URL: https://svnweb.freebsd.org/changeset/ports/523167

Log:
  emulators/qemu-sbruno: allow 64-bit targets on powerpc64
  
  Builds fine, I have no way to confirm it builds working binaries for those targets, but binaries for armv7 are fine.
  
  Approved by:	kevans91

Modified:
  head/emulators/qemu-sbruno/Makefile

Modified: head/emulators/qemu-sbruno/Makefile
==============================================================================
--- head/emulators/qemu-sbruno/Makefile	Wed Jan 15 21:06:57 2020	(r523166)
+++ head/emulators/qemu-sbruno/Makefile	Wed Jan 15 21:08:41 2020	(r523167)
@@ -3,6 +3,7 @@
 
 PORTNAME=	qemu
 PORTVERSION=	2.11.50.g20191211
+PORTREVISION=	1
 CATEGORIES=	emulators
 PKGNAMESUFFIX?=	-sbruno
 DIST_SUBDIR=	qemu/${PORTVERSION}
@@ -75,7 +76,7 @@ CONFIGURE_ARGS+=	--disable-libssh2
 PORTDOCS=	docs qemu-doc.html
 
 .if defined(QEMU_USER_STATIC)
-.if ${ARCH} != "amd64"
+.if ${ARCH} != "amd64" && ${ARCH} != "powerpc64"
 CONFIGURE_ARGS+=	--target-list=i386-bsd-user,sparc-bsd-user,arm-bsd-user,mips-bsd-user,mipsel-bsd-user,ppc-bsd-user
 .else
 CONFIGURE_ARGS+=	--target-list=i386-bsd-user,x86_64-bsd-user,sparc-bsd-user,sparc64-bsd-user,arm-bsd-user,mips-bsd-user,mipsel-bsd-user,mips64-bsd-user,mips64el-bsd-user,ppc-bsd-user,ppc64-bsd-user,aarch64-bsd-user


More information about the svn-ports-all mailing list