summaryrefslogtreecommitdiffstats
path: root/sys/Makefile
diff options
context:
space:
mode:
authorjkoshy <jkoshy@FreeBSD.org>1999-04-21 11:09:40 +0000
committerjkoshy <jkoshy@FreeBSD.org>1999-04-21 11:09:40 +0000
commitd9c00667012aae534fe05e09eeff108a46bf3307 (patch)
tree8d34f50c67317993a66f298bb4920210581f673a /sys/Makefile
parent83ff67cf25d60a11e06c48fc4817e7bbbdea6ffb (diff)
downloadFreeBSD-src-d9c00667012aae534fe05e09eeff108a46bf3307.zip
FreeBSD-src-d9c00667012aae534fe05e09eeff108a46bf3307.tar.gz
Use ${.CURDIR} in `exists()' constructs.
PR: misc/4395 Submitted by: J Wunsch <j@ida.interface-business.de>
Diffstat (limited to 'sys/Makefile')
-rw-r--r--sys/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/Makefile b/sys/Makefile
index bca5ede..876ae0d 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
OpenPOWER on IntegriCloud