buildworld: properly sequence quickworld
authorSimon Schubert <corecode@dragonflybsd.org>
Tue, 18 Aug 2009 21:31:46 +0000 (23:31 +0200)
committerSimon Schubert <corecode@dragonflybsd.org>
Tue, 18 Aug 2009 21:39:16 +0000 (23:39 +0200)
commit9ce308173ae9f45c17f8f4f1dd33047501f8b8f7
treedb815a11bebea939400ea142de400b211b1dc8d5
parente16a3b8e37489cdbd20298c5a5ffe6e2a84a17d7
buildworld: properly sequence quickworld

We must not run any of build stage in parallel.  The existing .ORDER
only works for the sequence of a full buildworld.  It seems that make is
not ordering any pair in an .ORDER target, but only pairs as written.
Quickworld does not run the intermediate stages between _obj and
_includes, thus allowing make to parallelize these two.

The proper fix might be in make, if we want to change the semantics of
the .ORDER target, but fixing it here doesn't hurt in any case.
Makefile.inc1