mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-11 13:27:06 +09:00
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:
1
debian/changelog
vendored
1
debian/changelog
vendored
@@ -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
|
||||
|
||||
|
||||
2
debian/rules.d/tools/lib/lockdep/Makefile
vendored
2
debian/rules.d/tools/lib/lockdep/Makefile
vendored
@@ -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)'
|
||||
|
||||
Reference in New Issue
Block a user