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

Nathan Whitehorn nwhitehorn at FreeBSD.org
Wed Aug 25 16:23:50 UTC 2010


Author: nwhitehorn
Date: Wed Aug 25 16:23:50 2010
New Revision: 211817
URL: http://svn.freebsd.org/changeset/base/211817

Log:
  Fix build of ppc32 loader.

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

Modified: head/sys/boot/common/Makefile.inc
==============================================================================
--- head/sys/boot/common/Makefile.inc	Wed Aug 25 15:29:12 2010	(r211816)
+++ head/sys/boot/common/Makefile.inc	Wed Aug 25 16:23:50 2010	(r211817)
@@ -9,7 +9,7 @@ SRCS+=	load_elf32.c load_elf32_obj.c rel
 SRCS+=	load_elf64.c load_elf64_obj.c reloc_elf64.c
 .elif ${MACHINE} == "pc98"
 SRCS+=	load_elf32.c load_elf32_obj.c reloc_elf32.c
-.elif ${MACHINE_ARCH} == "powerpc" || ${MACHINE_CPUARCH} == "arm"
+.elif ${MACHINE_CPUARCH} == "arm"
 SRCS+=	load_elf32.c reloc_elf32.c
 .elif ${MACHINE_CPUARCH} == "powerpc"
 SRCS+=	load_elf32.c reloc_elf32.c


More information about the svn-src-all mailing list