diff options
author | peter <peter@FreeBSD.org> | 2003-05-08 06:35:39 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2003-05-08 06:35:39 +0000 |
commit | c4cbceb4073f11ad6ac72d13debb0a99694c7f9d (patch) | |
tree | 30f73cdcf642d097dc7d073fa4dba51cd2090388 /sys/Makefile | |
parent | d52c328b4130bc52ab9c7d7b2478490fce9ec4e6 (diff) | |
download | FreeBSD-src-c4cbceb4073f11ad6ac72d13debb0a99694c7f9d.zip FreeBSD-src-c4cbceb4073f11ad6ac72d13debb0a99694c7f9d.tar.gz |
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)
Diffstat (limited to 'sys/Makefile')
-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) |