debian/rules.d/tools/power/linux-cpupower: Add "+" to recursive make commands

Because these command lines don't start with "$(MAKE)", we should
tell make that we are recursing.  Without this, the child make
can't run more than one job in parallel (and warns about this).
This commit is contained in:
Ben Hutchings 2018-09-11 02:13:58 +01:00
parent 0849f93de1
commit 05c9d96767
2 changed files with 5 additions and 3 deletions

2
debian/changelog vendored
View File

@ -17,6 +17,8 @@ linux (4.19~rc3-1~exp2) UNRELEASED; urgency=medium
* linux-perf: Fix generation of Perl and Python interpreter dependencies * linux-perf: Fix generation of Perl and Python interpreter dependencies
(Closes: #908547) (Closes: #908547)
* lockdep, lib{cpupower,lockdep}-dev: Remove bogus deps on ${shlibs:Depends} * lockdep, lib{cpupower,lockdep}-dev: Remove bogus deps on ${shlibs:Depends}
* debian/rules.d/tools/power/linux-cpupower: Add "+" to recursive make
commands
-- Ben Hutchings <ben@decadent.org.uk> Mon, 10 Sep 2018 22:25:53 +0100 -- Ben Hutchings <ben@decadent.org.uk> Mon, 10 Sep 2018 22:25:53 +0100

View File

@ -14,13 +14,13 @@ MAKE_CPUPOWER += PACKAGE_BUGREPORT='Debian\ \(reportbug\ linux-cpupower\)'
MAKE_CPUPOWER += libdir=/usr/lib/$(DEB_HOST_MULTIARCH) MAKE_CPUPOWER += libdir=/usr/lib/$(DEB_HOST_MULTIARCH)
all: all:
$(MAKE_CPUPOWER) -C $(top_srcdir)/tools/power/cpupower +$(MAKE_CPUPOWER) -C $(top_srcdir)/tools/power/cpupower
install: install:
$(MAKE_CPUPOWER) -C $(top_srcdir)/tools/power/cpupower install DESTDIR=$(DESTDIR) +$(MAKE_CPUPOWER) -C $(top_srcdir)/tools/power/cpupower install DESTDIR=$(DESTDIR)
ifneq (,$(filter nodoc,$(DEB_BUILD_PROFILES))) ifneq (,$(filter nodoc,$(DEB_BUILD_PROFILES)))
rm -rf $(DESTDIR)/usr/share/man rm -rf $(DESTDIR)/usr/share/man
endif endif
clean: clean:
$(MAKE_CPUPOWER) -C $(top_srcdir)/tools/power/cpupower clean +$(MAKE_CPUPOWER) -C $(top_srcdir)/tools/power/cpupower clean