diff options
author | marcel <marcel@FreeBSD.org> | 1999-11-14 13:54:44 +0000 |
---|---|---|
committer | marcel <marcel@FreeBSD.org> | 1999-11-14 13:54:44 +0000 |
commit | 17ed6e05da9e78604972eb2120615a505953fd25 (patch) | |
tree | 571f4f72304b0d631bd6808faace186b95d27a21 /sys/Makefile | |
parent | 281ba43ee5ba4c4ff8ac1085144a3d1d7c550386 (diff) | |
download | FreeBSD-src-17ed6e05da9e78604972eb2120615a505953fd25.zip FreeBSD-src-17ed6e05da9e78604972eb2120615a505953fd25.tar.gz |
${MACHINE} -> ${MACHINE_ARCH}
All Makefiles now use MACHINE_ARCH for the target architecture.
Unification is required for cross-building.
Tags added to:
sys/boot/Makefile
sys/boot/arc/loader/Makefile
sys/kern/Makefile
usr.bin/cpp/Makefile
usr.bin/gcore/Makefile
usr.bin/truss/Makefile
usr.bin/gcore/Makefile:
fixed typo: MACHINDE -> MACHINE_ARCH
Diffstat (limited to 'sys/Makefile')
-rw-r--r-- | sys/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/Makefile b/sys/Makefile index 0077456..57ff690 100644 --- a/sys/Makefile +++ b/sys/Makefile @@ -1,8 +1,8 @@ # $FreeBSD$ # This is the old aout only boot loader. -.if exists(${.CURDIR}/${MACHINE}/boot) && ${OBJFORMAT} == "aout" -SUBDIR= ${MACHINE}/boot +.if exists(${.CURDIR}/${MACHINE_ARCH}/boot) && ${OBJFORMAT} == "aout" +SUBDIR= ${MACHINE_ARCH}/boot .elif exists(${.CURDIR}/boot) && ${MACHINE_ARCH} == "i386" && ${OBJFORMAT} == "elf" SUBDIR= boot .endif |