From ad25e86edbea9e2cdc9e2e9b2289861890cb07dc Mon Sep 17 00:00:00 2001 From: Ben Hutchings Date: Tue, 23 Feb 2016 01:06:56 +0000 Subject: [PATCH] lockdep: Add '+' prefix to make invocation, so it can be parallelised This enables coordination with the top-level job server. Without this, the child 'make' will be limited to serial operation. --- debian/changelog | 1 + debian/rules.d/tools/lib/lockdep/Makefile | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 0b9a53fc1..316760540 100644 --- a/debian/changelog +++ b/debian/changelog @@ -5,6 +5,7 @@ linux-tools (4.5~rc5-1~exp4) UNRELEASED; urgency=medium * Makefile.inc, rules.real: Fix conflation of $(DESTDIR) and $(prefix) * hyperv-daemons: Fix rule redefinition that 'make' warns about * debian/control: Build-Depend on dh-python, as dh_python2 warns we should + * lockdep: Add '+' prefix to make invocation, so it can be parallelised -- Ben Hutchings Mon, 22 Feb 2016 23:21:57 +0000 diff --git a/debian/rules.d/tools/lib/lockdep/Makefile b/debian/rules.d/tools/lib/lockdep/Makefile index c3980200e..cb8c122f8 100644 --- a/debian/rules.d/tools/lib/lockdep/Makefile +++ b/debian/rules.d/tools/lib/lockdep/Makefile @@ -2,7 +2,7 @@ include $(top_rulesdir)/Makefile.inc DEB_HOST_MULTIARCH := $(shell dpkg-architecture -qDEB_HOST_MULTIARCH) -MAKE_LOCKDEP := $(MAKE) -C $(top_srcdir)/$(OUTDIR) O=$(CURDIR) V=1 \ +MAKE_LOCKDEP := +$(MAKE) -C $(top_srcdir)/$(OUTDIR) O=$(CURDIR) V=1 \ prefix=/usr libdir_relative=lib/$(DEB_HOST_MULTIARCH) \ LIBLOCKDEP_VERSION=$(VERSION) \ CONFIG_FLAGS='$(CFLAGS) $(filter -D%,$(CPPFLAGS))' LDFLAGS='$(LDFLAGS)'