diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-02-26 12:34:01 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-02-26 14:34:29 +0100 |
commit | cd2725de90517cd63a17ccbf2c59c1e07eca5744 (patch) | |
tree | 3bbb16955b8f5a7e04f28f140673f66c6a5520d0 | |
parent | 1be32cc6d36766d42a0b80d2768bf31e5b8aa8bb (diff) |
Revert "compilerplugins: Build them in parallel."
This reverts commit 4101fa184150663ddee6688c19eb4a44e341e8d4.
Just configure --without-parallelism and always use an explicit make -jN, and be
done with it. I just can't stand that "make[1]: Entering/Leaving directory"
noise around each "[build CXX] compilerplugins/clang/*.cxx" line any more.
-rw-r--r-- | compilerplugins/Makefile.mk | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/compilerplugins/Makefile.mk b/compilerplugins/Makefile.mk index 5da6967c1617..dc0b1c24b702 100644 --- a/compilerplugins/Makefile.mk +++ b/compilerplugins/Makefile.mk @@ -21,11 +21,7 @@ else ifeq ($(COM_IS_CLANG),TRUE) -compilerplugins: - $(MAKE) $(PARALLELISM_OPTION) -f $(SRCDIR)/compilerplugins/Makefile-clang.mk compilerplugins - -compilerplugins-clean: - $(MAKE) -f $(SRCDIR)/compilerplugins/Makefile-clang.mk compilerplugins-clean +include $(SRCDIR)/compilerplugins/Makefile-clang.mk compilerplugins.clean: compilerplugins-clean |