summaryrefslogtreecommitdiff
path: root/third-party
diff options
context:
space:
mode:
authorGeorge Joseph <gjoseph@digium.com>2016-12-18 14:23:17 -0700
committerGeorge Joseph <gjoseph@digium.com>2016-12-18 15:26:53 -0600
commitd29eb3b99d749a25827b47e6940a734441c5ba4b (patch)
treee17026a69914c357a7921112a953baa4f8f7a6d5 /third-party
parent147b8e636ef48a07891d4ce908a81f070ddf3437 (diff)
pjproject_bundled: Make build single threaded
There were just too many issues in various environments with multi threaded building of pjproject. It doesn't really speed things up anyway since asterisk is already being compiled in parallel. Change-Id: Ie5648fb91bb89b4224b6bf43a0daa1af793c4ce1
Diffstat (limited to 'third-party')
-rw-r--r--third-party/pjproject/Makefile7
1 files changed, 3 insertions, 4 deletions
diff --git a/third-party/pjproject/Makefile b/third-party/pjproject/Makefile
index e24a5df67..645e7c4fb 100644
--- a/third-party/pjproject/Makefile
+++ b/third-party/pjproject/Makefile
@@ -1,5 +1,7 @@
.PHONY: _all all _install install clean distclean echo_cflags configure
+.NOTPARALLEL:
+
include ../versions.mak
export PJDIR := $(shell pwd -P)/source
@@ -139,7 +141,6 @@ source/pjlib/include/pj/%.h: patches/%.h
.rebuild_needed: $(wildcard ../../makeopts) $(wildcard ../../menuselect.makeopts)
$(ECHO_PREFIX) Rebuilding
$(CMD_PREFIX) $(MAKE) clean $(REALLY_QUIET)
- @touch .rebuild_needed
source/build.mak: Makefile.rules source/version.mak source/user.mak $(addprefix source/pjlib/include/pj/,$(notdir $(wildcard patches/*.h))) .rebuild_needed
$(ECHO_PREFIX) Configuring with $(PJPROJECT_CONFIG_OPTS)
@@ -156,13 +157,11 @@ echo_cflags: source/build.mak
libpj%.a: source/build.mak
$(ECHO_PREFIX) Compiling lib $(@F)
$(CMD_PREFIX) $(MAKE) -C $(dir $(shell dirname $@))/build $(@F) $(REALLY_QUIET)
- -@rm -rf .rebuild_needed
# pjsua needs resample and g711 to successfully run the testsuite
-libresample%.a: .rebuild_needed source/build.mak
+libresample%.a: source/build.mak
$(ECHO_PREFIX) Compiling lib $(@F)
$(CMD_PREFIX) $(MAKE) -C $(dir $(shell dirname $@))/build/resample all $(REALLY_QUIET)
- -@rm -rf .rebuild_needed
# We need to compile pjlib, then pjlib-util, then the rest
# so we separate them out and create the dependencies