From 756985ab45965d1e18f1c7fb6436a9d3df3d7da8 Mon Sep 17 00:00:00 2001 From: John Birrell <jb@FreeBSD.org> Date: Fri, 20 Feb 1998 07:37:08 +0000 Subject: [PATCH] Test for the existance of ${MACHINE}/boot before trying to build it. The PC98 stuff in this makefile should be removed and that system should build with MACHINE=pc98 and MACHINE_ARCH=i386. --- sys/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/Makefile b/sys/Makefile index 28d394a8061c..ebf9ca256991 100644 --- a/sys/Makefile +++ b/sys/Makefile @@ -1,8 +1,8 @@ -# $Id: Makefile,v 1.7 1997/02/22 09:27:56 peter Exp $ +# $Id: Makefile,v 1.8 1997/07/13 07:36:20 jkh Exp $ .if defined(MACHINE_PC98) && ${MACHINE_PC98} == "yes" SUBDIR= pc98/boot -.else +.elif exists(${MACHINE}/boot) SUBDIR= ${MACHINE}/boot .endif