[Asterisk-code-review] Build System: Disable parallel make in the root Makefile. (asterisk[master])

Corey Farrell asteriskteam at digium.com
Thu Nov 9 13:29:43 CST 2017


Corey Farrell has uploaded this change for review. ( https://gerrit.asterisk.org/7159


Change subject: Build System: Disable parallel make in the root Makefile.
......................................................................

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
---
M Makefile
1 file changed, 3 insertions(+), 0 deletions(-)



  git pull ssh://gerrit.asterisk.org:29418/asterisk refs/changes/59/7159/1

diff --git a/Makefile b/Makefile
index 8048f59..e37dd90 100644
--- a/Makefile
+++ b/Makefile
@@ -1111,3 +1111,6 @@
 
 FORCE:
 
+# This only stops targets within the root Makefile from building in parallel.
+.NOTPARALLEL:
+

-- 
To view, visit https://gerrit.asterisk.org/7159
To unsubscribe, visit https://gerrit.asterisk.org/settings

Gerrit-Project: asterisk
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: I4f2ec6fbbec1ada0ccb1109a28ea303524239b1e
Gerrit-Change-Number: 7159
Gerrit-PatchSet: 1
Gerrit-Owner: Corey Farrell <git at cfware.com>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.digium.com/pipermail/asterisk-code-review/attachments/20171109/3f5638df/attachment.html>


More information about the asterisk-code-review mailing list