diff options
-rw-r--r-- | sys/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/Makefile b/sys/Makefile index 6e370272..6d68a4f 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) |