diff options
| author | Joseph Koshy <jkoshy@FreeBSD.org> | 1999-04-21 11:09:40 +0000 |
|---|---|---|
| committer | Joseph Koshy <jkoshy@FreeBSD.org> | 1999-04-21 11:09:40 +0000 |
| commit | 29ddf5ab8891c57e2e81f4c06511974ffc34cc5d (patch) | |
| tree | 7407dec5050f1f44bec0f2fdf208478902f3659a /sys | |
| parent | ab64f2390c36286d34e70aea86635abff6ab354d (diff) | |
Notes
Diffstat (limited to 'sys')
| -rw-r--r-- | sys/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/Makefile b/sys/Makefile index bca5eded3e54..876ae0df6a2f 100644 --- a/sys/Makefile +++ b/sys/Makefile @@ -1,13 +1,13 @@ -# $Id: Makefile,v 1.15 1998/12/30 11:17:09 bde Exp $ +# $Id: Makefile,v 1.16 1998/12/30 12:06:08 bde Exp $ # This is the old aout only boot loader. -.if exists(${MACHINE}/boot) && ${OBJFORMAT} == "aout" +.if exists(${.CURDIR}/${MACHINE}/boot) && ${OBJFORMAT} == "aout" SUBDIR= ${MACHINE}/boot -.elif exists(boot) && ${MACHINE} == "i386" && ${OBJFORMAT} == "elf" +.elif exists(${.CURDIR}/boot) && ${MACHINE} == "i386" && ${OBJFORMAT} == "elf" SUBDIR= boot .endif -.if exists(boot) && ${MACHINE_ARCH} == "alpha" +.if exists(${.CURDIR}/boot) && ${MACHINE_ARCH} == "alpha" SUBDIR= boot .endif |
