From 34da59975b226791e6c3e3308847970005fbc5a5 Mon Sep 17 00:00:00 2001 From: Peter Wemm Date: Thu, 8 May 2003 06:35:39 +0000 Subject: Exclude sys/boot for amd64. There are still toolchain issues to deal with. In theory, gcc -m32 should work, but for now, do not tempt fate. Approved by: re (scottl) --- sys/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'sys/Makefile') diff --git a/sys/Makefile b/sys/Makefile index 6e3702727c6c..6d68a4fb29eb 100644 --- a/sys/Makefile +++ b/sys/Makefile @@ -1,7 +1,10 @@ # $FreeBSD$ +SUBDIR= # The boot loader -SUBDIR= boot +.if ${MACHINE_ARCH} != "amd64" +SUBDIR+=boot +.endif # KLD modules build for both a.out and ELF .if defined(MODULES_WITH_WORLD) -- cgit v1.3