Module Name: src
Committed By: joerg
Date: Tue Jul 16 09:52:21 UTC 2013
Modified Files:
src: Makefile
Log Message:
hp700 rescue/ldd fails on -j16 build if usr.bin/ldd/elf32/libldd_elf32.a
hasn't been made yet. Add an explicit .WAIT before rescue to avoid this.
To generate a diff of this commit:
cvs rdiff -u -r1.302 -r1.303 src/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/Makefile
diff -u src/Makefile:1.302 src/Makefile:1.303
--- src/Makefile:1.302 Mon Dec 3 13:53:29 2012
+++ src/Makefile Tue Jul 16 09:52:21 2013
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.302 2012/12/03 13:53:29 apb Exp $
+# $NetBSD: Makefile,v 1.303 2013/07/16 09:52:21 joerg Exp $
#
# This is the top-level makefile for building NetBSD. For an outline of
@@ -139,7 +139,8 @@ _SRC_TOP_OBJ_=
#
_SUBDIR= tools lib include gnu external crypto/external bin games
_SUBDIR+= libexec sbin usr.bin
-_SUBDIR+= usr.sbin share rescue sys etc tests compat .WAIT distrib regress
+_SUBDIR+= usr.sbin share sys etc tests compat
+_SUBDIR+= .WAIT rescue .WAIT distrib regress
.for dir in ${_SUBDIR}
.if "${dir}" == ".WAIT" \