Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 30 Nov 2017 07:08:55 +0000 (UTC)
From:      Mark Linimon <linimon@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r455174 - head/devel/kBuild
Message-ID:  <201711300708.vAU78t2R051321@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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} \



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