svn commit: r264199 - head/sys/boot/ficl

Warner Losh imp at FreeBSD.org
Sun Apr 6 19:51:58 UTC 2014


Author: imp
Date: Sun Apr  6 19:51:57 2014
New Revision: 264199
URL: http://svnweb.freebsd.org/changeset/base/264199

Log:
  Fix the mips64el build: mips64el should use the mips64 directory, not the mips64el directory.

Modified:
  head/sys/boot/ficl/Makefile

Modified: head/sys/boot/ficl/Makefile
==============================================================================
--- head/sys/boot/ficl/Makefile	Sun Apr  6 19:19:25 2014	(r264198)
+++ head/sys/boot/ficl/Makefile	Sun Apr  6 19:51:57 2014	(r264199)
@@ -6,7 +6,7 @@ FICLDIR?=	${.CURDIR}
 .if defined(FICL32)
 .PATH: ${FICLDIR}/${MACHINE_CPUARCH:S/amd64/i386/}
 .elif ${MACHINE_ARCH} == "mips64" || ${MACHINE_ARCH} == "mips64el"
-.PATH: ${FICLDIR}/${MACHINE_ARCH}
+.PATH: ${FICLDIR}/mips64
 .else
 .PATH: ${FICLDIR}/${MACHINE_CPUARCH}
 .endif


More information about the svn-src-head mailing list