svn commit: r296378 - head/sys/boot/common

Stanislav Galabov sgalabov at FreeBSD.org
Fri Mar 4 05:36:55 UTC 2016


Author: sgalabov
Date: Fri Mar  4 05:36:53 2016
New Revision: 296378
URL: https://svnweb.freebsd.org/changeset/base/296378

Log:
  Fix ubldr build failure on mipsn32 and mipsn32el targets.
  
  Approved by:	adrian (mentor)

Modified:
  head/sys/boot/common/Makefile.inc

Modified: head/sys/boot/common/Makefile.inc
==============================================================================
--- head/sys/boot/common/Makefile.inc	Fri Mar  4 03:10:08 2016	(r296377)
+++ head/sys/boot/common/Makefile.inc	Fri Mar  4 05:36:53 2016	(r296378)
@@ -20,7 +20,7 @@ SRCS+=	load_elf64.c reloc_elf64.c
 SRCS+=	load_elf64.c reloc_elf64.c
 .elif ${MACHINE_ARCH} == "mips64" || ${MACHINE_ARCH} == "mips64el"
 SRCS+= load_elf64.c reloc_elf64.c
-.elif ${MACHINE_ARCH} == "mips" || ${MACHINE_ARCH} == "mipsel"
+.elif ${MACHINE} == "mips"
 SRCS+=	load_elf32.c reloc_elf32.c
 .endif
 


More information about the svn-src-head mailing list