FYI

----- Forwarded message from Mark Linimon <[email protected]> -----

Date: Thu, 30 Nov 2017 07:08:55 +0000 (UTC)
From: Mark Linimon <[email protected]>
To: [email protected], [email protected], 
[email protected]
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 -----
_______________________________________________
[email protected] mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-emulation
To unsubscribe, send any mail to "[email protected]"

Reply via email to