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.
This commit is contained in:
Ben Hutchings 2016-02-23 01:06:56 +00:00
parent 1d94112d6c
commit ad25e86edb
2 changed files with 2 additions and 1 deletions

1
debian/changelog vendored
View File

@ -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 <ben@decadent.org.uk> Mon, 22 Feb 2016 23:21:57 +0000

View File

@ -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)'