Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/distrib/sets Insert .WAIT between maketars and makesums in s...



details:   https://anonhg.NetBSD.org/src/rev/46007e09a1bb
branches:  trunk
changeset: 526241:46007e09a1bb
user:      sommerfeld <sommerfeld%NetBSD.org@localhost>
date:      Mon Apr 29 05:02:57 2002 +0000

description:
Insert .WAIT between maketars and makesums in sets: dependancy.

An explicit makesums: maketars dependancy was not used because a
release engineer might want to regenerate the sums only and not the
tarballs; there's no explicit dependancy tracking here or elsewhere
between the input files and the output tarballs so everything gets
rebuild always.

XXX The existing "maketars" script is also not friendly to parallel
builds -- all of the sets files should be visible to the makefile so
they can be built in parallel.

diffstat:

 distrib/sets/Makefile |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 3dd777a65df8 -r 46007e09a1bb distrib/sets/Makefile
--- a/distrib/sets/Makefile     Mon Apr 29 04:40:00 2002 +0000
+++ b/distrib/sets/Makefile     Mon Apr 29 05:02:57 2002 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.13 2002/04/26 15:50:46 lukem Exp $
+#      $NetBSD: Makefile,v 1.14 2002/04/29 05:02:57 sommerfeld Exp $
 
 # The `all' target must appear before bsd.own.mk is pulled in.
 all:
@@ -63,7 +63,7 @@
 # MAIN ENTRY POINTS
 #
 
-sets: maketars makesums
+sets: maketars .WAIT makesums
        @true
 
 .include <bsd.sys.mk>



Home | Main Index | Thread Index | Old Index