svn commit: r492963 - head/devel/llvm80

Tobias Kortkamp tobik at FreeBSD.org
Fri Feb 15 00:23:26 UTC 2019


Author: tobik
Date: Fri Feb 15 00:23:25 2019
New Revision: 492963
URL: https://svnweb.freebsd.org/changeset/ports/492963

Log:
  Unbreak index
  
  make[5]: Unknown modifier 'a'
  make[5]: ".../devel/llvm80/Makefile" line 318: Malformed conditional (${ARCHM:armv*})

Modified:
  head/devel/llvm80/Makefile

Modified: head/devel/llvm80/Makefile
==============================================================================
--- head/devel/llvm80/Makefile	Fri Feb 15 00:21:42 2019	(r492962)
+++ head/devel/llvm80/Makefile	Fri Feb 15 00:23:25 2019	(r492963)
@@ -315,7 +315,7 @@ FREEBSD_BACKENDS=	AArch64 ARM Mips PowerPC Sparc X86
 NATIVE_BACKENDS=	X86
 .elif ${ARCH} == arm64
 NATIVE_BACKENDS=	AAarch64
-.elif ${ARCHM:armv*}
+.elif ${ARCH:Marmv*}
 NATIVE_BACKENDS=	ARM
 .elif ${ARCH} == i386
 NATIVE_BACKENDS=	X86


More information about the svn-ports-all mailing list