From patchwork Fri May 29 20:08:51 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Chris J Arges X-Patchwork-Id: 6511071 Return-Path: X-Original-To: patchwork-linux-kbuild@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id E4D97C0020 for ; Fri, 29 May 2015 20:09:01 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 3010D207B6 for ; Fri, 29 May 2015 20:09:01 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 25B4020640 for ; Fri, 29 May 2015 20:09:00 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756364AbbE2UI7 (ORCPT ); Fri, 29 May 2015 16:08:59 -0400 Received: from youngberry.canonical.com ([91.189.89.112]:35333 "EHLO youngberry.canonical.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756266AbbE2UI6 (ORCPT ); Fri, 29 May 2015 16:08:58 -0400 Received: from [10.172.65.250] (helo=localhost.localdomain) by youngberry.canonical.com with esmtpsa (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.76) (envelope-from ) id 1YyQaO-0006Et-15; Fri, 29 May 2015 20:08:56 +0000 From: Chris J Arges To: mmarek@suse.cz Cc: riku.voipio@linaro.org, linux-kbuild@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH v2] package: Makefile: ensure $MAKE can use jobserver Date: Fri, 29 May 2015 15:08:51 -0500 Message-Id: <1432930131-5846-1-git-send-email-chris.j.arges@canonical.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: References: Sender: linux-kbuild-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kbuild@vger.kernel.org X-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, T_RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP When using make deb-pkg, builddeb is called without proper MAKEFLAGS due to the script being invoked without '+'. This results in the following message when building: warning: jobserver unavailable: using -j1. Add `+' to parent make rule Add the '+' so the make operations can be parallelized. Signed-off-by: Chris J Arges --- scripts/package/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/package/Makefile b/scripts/package/Makefile index bc6aa00..ea2a405 100644 --- a/scripts/package/Makefile +++ b/scripts/package/Makefile @@ -97,7 +97,7 @@ quiet_cmd_builddeb = BUILDDEB deb-pkg: FORCE $(MAKE) KBUILD_SRC= - $(call cmd,builddeb) + +$(call cmd,builddeb) clean-dirs += $(objtree)/debian/