Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/regress/sys Make this parallel-safe when MACHINE == MACHINE_...
details: https://anonhg.NetBSD.org/src/rev/7f459c747e2e
branches: trunk
changeset: 509581:7f459c747e2e
user: sommerfeld <sommerfeld%NetBSD.org@localhost>
date: Tue May 08 02:15:39 2001 +0000
description:
Make this parallel-safe when MACHINE == MACHINE_ARCH
diffstat:
regress/sys/Makefile | 8 +++++---
1 files changed, 5 insertions(+), 3 deletions(-)
diffs (25 lines):
diff -r 0ea7cd9240f0 -r 7f459c747e2e regress/sys/Makefile
--- a/regress/sys/Makefile Tue May 08 02:04:08 2001 +0000
+++ b/regress/sys/Makefile Tue May 08 02:15:39 2001 +0000
@@ -1,16 +1,18 @@
-# $NetBSD: Makefile,v 1.10 2000/11/01 15:34:28 itojun Exp $
+# $NetBSD: Makefile,v 1.11 2001/05/08 02:15:39 sommerfeld Exp $
.include <bsd.own.mk>
SUBDIR= kern fs uvm
-.if exists(arch/${MACHINE})
+.if exists(arch/${MACHINE}/Makefile)
SUBDIR+= arch/${MACHINE}
.endif
-.if exists(arch/${MACHINE_ARCH})
+.if exists(arch/${MACHINE_ARCH}/Makefile)
SUBDIR+= arch/${MACHINE_ARCH}
.endif
.if ${MKCRYPTO} != "no"
SUBDIR+= crypto
.endif
+SUBDIR := ${SUBDIR:O:u}
+
.include <bsd.subdir.mk>
Home |
Main Index |
Thread Index |
Old Index