diff options
author | imp <imp@FreeBSD.org> | 2006-06-18 17:44:40 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2006-06-18 17:44:40 +0000 |
commit | 1d5aad7b0a622405bb7b71c1b229789d238fc50e (patch) | |
tree | a175edfbf593ee50e7952ca0df039f73f95943cb /sys/boot | |
parent | 20e59104b04ea9e7b41b33055a223512a3f3111b (diff) | |
download | FreeBSD-src-1d5aad7b0a622405bb7b71c1b229789d238fc50e.zip FreeBSD-src-1d5aad7b0a622405bb7b71c1b229789d238fc50e.tar.gz |
Don't descend into ${MACHINE} on the arm platforms.
Diffstat (limited to 'sys/boot')
-rw-r--r-- | sys/boot/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/boot/Makefile b/sys/boot/Makefile index bbb0ef8..80ae36d 100644 --- a/sys/boot/Makefile +++ b/sys/boot/Makefile @@ -17,7 +17,9 @@ SUBDIR+= efi SUBDIR+= ofw .endif +.if ${MACHINE_ARCH} != "arm" # Pick the machine-dependent subdir based on the target architecture. SUBDIR+= ${MACHINE:S/amd64/i386/} +.endif .include <bsd.subdir.mk> |