svn commit: r492463 - head/devel/llvm80

Brooks Davis brooks at FreeBSD.org
Fri Feb 8 21:50:30 UTC 2019


Author: brooks
Date: Fri Feb  8 21:50:29 2019
New Revision: 492463
URL: https://svnweb.freebsd.org/changeset/ports/492463

Log:
  Fix a misspelling of elif and match all powerpc ARCHs.

Modified:
  head/devel/llvm80/Makefile

Modified: head/devel/llvm80/Makefile
==============================================================================
--- head/devel/llvm80/Makefile	Fri Feb  8 20:58:56 2019	(r492462)
+++ head/devel/llvm80/Makefile	Fri Feb  8 21:50:29 2019	(r492463)
@@ -321,9 +321,9 @@ NATIVE_BACKENDS=	ARM
 NATIVE_BACKENDS=	X86
 .elif ${ARCH} == mips
 NATIVE_BACKENDS=	Mips
-.elfi ${ARCH} == powerpc
+.elif ${ARCH:Mpowerpc*}
 NATIVE_BACKENDS=	PowerPC
-.elfi ${ARCH} == riscv
+.elif ${ARCH} == riscv
 BROKEN_riscv=	No non-experimental native backend
 .endif
 STANDARD_BACKENDS=	${FREEBSD_BACKENDS} AMDGPU BPF Hexagon Lanai MSP430 \


More information about the svn-ports-all mailing list