From: Corey Farrell Date: Thu, 9 Nov 2017 19:24:46 +0000 (-0500) Subject: Build System: Disable parallel make in the root Makefile. X-Git-Tag: 16.0.0-rc1~643^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=23b0ef3e9b3b53e488bb858b1c9c11770665c1ac;p=thirdparty%2Fasterisk.git Build System: Disable parallel make in the root Makefile. This ensures that the root Makefile runs only a single target at a time. SUBMAKE will still honor requested parallelism, so 'make -j8' will build one directory at a time but allow 8 jobs at once when building a sub directory. This will fix some display glitches related to rebuild of XML documentation. It will also prevent some edge case errors where bundled pjproject needs to be rebuild before other parts of Asterisk. Change-Id: I4f2ec6fbbec1ada0ccb1109a28ea303524239b1e --- diff --git a/Makefile b/Makefile index 8048f5915a..e37dd90fd2 100644 --- a/Makefile +++ b/Makefile @@ -1111,3 +1111,6 @@ check-alembic: makeopts FORCE: +# This only stops targets within the root Makefile from building in parallel. +.NOTPARALLEL: +