From 194270c84bf0a529dcaf2161a6a91d3c74e77cd6 Mon Sep 17 00:00:00 2001 From: Nathan Whitehorn Date: Wed, 25 Aug 2010 16:23:50 +0000 Subject: [PATCH] Fix build of ppc32 loader. --- sys/boot/common/Makefile.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/boot/common/Makefile.inc b/sys/boot/common/Makefile.inc index ff3ec3912b79..925e961bb491 100644 --- a/sys/boot/common/Makefile.inc +++ b/sys/boot/common/Makefile.inc @@ -9,7 +9,7 @@ SRCS+= load_elf32.c load_elf32_obj.c reloc_elf32.c 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