Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 6 Apr 2014 19:51:58 +0000 (UTC)
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r264199 - head/sys/boot/ficl
Message-ID:  <201404061951.s36JpwQ0059015@svn.freebsd.org>

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



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