From: Gwendal Grignou Date: Thu, 16 Jan 2020 20:33:26 +0000 (-0800) Subject: fix parallel build of btt and blkiomon X-Git-Tag: blktrace-1.3.0~21 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=f4f8ef7cdea138cfaa2f3ca0ee31fa23d3bcf1cc;p=blktrace.git fix parallel build of btt and blkiomon rbtree.c is used by both binaries. It is possible that when make -C btt is invoked rbtree.o does not exist yet, but is already schedule by the compilation of blkiomon. That could result in recompiling rbtree.o again for btt/btt. In that case, at install time, make will recompile blkiomon which can fail in gentoo, because CC variable is not overriden by ebuild script at install time. (see https://bugs.gentoo.org/705594) Add a dependency on SUBDIRS to wait for all binary in . to be compiled. It will guarante rbtree.o exists. Signed-off-by: Gwendal Grignou Signed-off-by: Jens Axboe --- diff --git a/Makefile b/Makefile index 5917814..eb3c6a1 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,7 @@ all: $(ALL) $(SUBDIRS) # We always descend into subdirs because they contain their own dependency # information which we don't track in this top level Makefile. -$(SUBDIRS): +$(SUBDIRS): $(PROGS) $(MAKE) -C $@ .PHONY: $(SUBDIRS)