From owner-freebsd-emulation@freebsd.org Thu Nov 30 07:09:51 2017 Return-Path: Delivered-To: freebsd-emulation@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 61513DFAE35 for ; Thu, 30 Nov 2017 07:09:51 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 473AC78AE6 for ; Thu, 30 Nov 2017 07:09:51 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: by mailman.ysv.freebsd.org (Postfix) id 469F1DFAE31; Thu, 30 Nov 2017 07:09:51 +0000 (UTC) Delivered-To: emulation@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 46479DFAE30 for ; Thu, 30 Nov 2017 07:09:51 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2610:1c1:1:6074::16:84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1F91378AE5 for ; Thu, 30 Nov 2017 07:09:51 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: by freefall.freebsd.org (Postfix) id 625A72AE3; Thu, 30 Nov 2017 07:09:50 +0000 (UTC) Delivered-To: vbox@localmail.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mx1.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by freefall.freebsd.org (Postfix) with ESMTPS id 47F3C2AE2; Thu, 30 Nov 2017 07:09:50 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: from mail.soaustin.net (mail.soaustin.net [192.108.105.60]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.soaustin.net", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5535C78ADE; Thu, 30 Nov 2017 07:09:46 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: from lonesome.com (bones.soaustin.net [192.108.105.22]) by mail.soaustin.net (Postfix) with ESMTPSA id 643A3EE0; Thu, 30 Nov 2017 01:09:45 -0600 (CST) Date: Thu, 30 Nov 2017 01:09:44 -0600 From: Mark Linimon To: vbox@FreeBSD.org Cc: linimon@FreeBSD.org Subject: [linimon@FreeBSD.org: svn commit: r455174 - head/devel/kBuild] Message-ID: <20171130070944.GA26264@lonesome.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.23 (2014-03-12) X-Mailman-Approved-At: Thu, 30 Nov 2017 11:40:28 +0000 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 30 Nov 2017 07:09:51 -0000 FYI ----- Forwarded message from Mark Linimon ----- Date: Thu, 30 Nov 2017 07:08:55 +0000 (UTC) From: Mark Linimon To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r455174 - head/devel/kBuild Author: linimon Date: Thu Nov 30 07:08:54 2017 New Revision: 455174 URL: https://svnweb.freebsd.org/changeset/ports/455174 Log: Replace regex that was particular to armv6 with one that will also include armv7. This is part of a larger sweep to fix all such regexes in the tree. It won't really matter until the build is fixed for armv[67] but the bad usages need to be removed. Approved by: portmgr (tier-2 blanket) Modified: head/devel/kBuild/Makefile Modified: head/devel/kBuild/Makefile ============================================================================== --- head/devel/kBuild/Makefile Thu Nov 30 07:02:49 2017 (r455173) +++ head/devel/kBuild/Makefile Thu Nov 30 07:08:54 2017 (r455174) @@ -15,7 +15,7 @@ LICENSE= BSD3CLAUSE GPLv3+ LICENSE_COMB= multi BROKEN_powerpc64= does not build: fatal error: xmmintrin.h: No such file or directory -NOT_FOR_ARCHS= aarch64 armv6 mips mips64 +NOT_FOR_ARCHS= aarch64 armv6 armv7 mips mips64 NOT_FOR_ARCHS_REASON= ./kBuild/env.sh: unknown cpu/arch USE_GCC= any @@ -26,7 +26,7 @@ CONFLICTS_INSTALL= kBuild-devel-[0-9]* WRKSRC= ${WRKDIR}/${PORTNAME}-${DISTVERSION} KBUILD_VERSION= 0.1.9998 -KBUILD_ARCH= ${MACHINE_ARCH:S/i386/x86/:S/x86_64/amd64/:S/powerpc/ppc32/:S/armv6/arm/} +KBUILD_ARCH= ${MACHINE_ARCH:S/i386/x86/:S/x86_64/amd64/:S/powerpc/ppc32/:C/armv.*/arm/} KBUILD_ENV= ACLOCAL=${ACLOCAL} \ AUTOMAKE=${AUTOMAKE} \ AUTORECONF=${AUTORECONF} \ ----- End forwarded message -----