From ef313bf93508ddbaee091ea73e2137745e0149ff Mon Sep 17 00:00:00 2001 From: "David E. O'Brien" Date: Thu, 28 Mar 2002 01:28:21 +0000 Subject: [PATCH] Not all platforms have and want a.out format support. --- sys/boot/common/Makefile.inc | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/sys/boot/common/Makefile.inc b/sys/boot/common/Makefile.inc index b6c3acfbc21..bf76992f52a 100644 --- a/sys/boot/common/Makefile.inc +++ b/sys/boot/common/Makefile.inc @@ -1,9 +1,13 @@ # $FreeBSD$ SRCS+= bcache.c boot.c commands.c console.c devopen.c interp.c -SRCS+= interp_backslash.c interp_parse.c load_aout.c load_elf.c ls.c misc.c +SRCS+= interp_backslash.c interp_parse.c load_elf.c ls.c misc.c SRCS+= module.c panic.c +.if defined(LOADER_AOUT_SUPPORT) +SRCS+= load_aout.c +.endif + .if defined(LOADER_NET_SUPPORT) SRCS+= dev_net.c .endif