From patchwork Fri Oct 18 09:27:15 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Fabio Porcedda X-Patchwork-Id: 284481 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ozlabs.org (Postfix) with ESMTP id 3DB542C00C5 for ; Fri, 18 Oct 2013 20:27:45 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 3411E93665; Fri, 18 Oct 2013 09:27:38 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id a-uF8zzRKTUr; Fri, 18 Oct 2013 09:27:36 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id 60AC0933FC; Fri, 18 Oct 2013 09:27:36 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ash.osuosl.org (Postfix) with ESMTP id 4FE521BFA82 for ; Fri, 18 Oct 2013 09:27:34 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 49CE228827 for ; Fri, 18 Oct 2013 09:27:34 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id d8WgKGwnADgw for ; Fri, 18 Oct 2013 09:27:33 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-pa0-f42.google.com (mail-pa0-f42.google.com [209.85.220.42]) by silver.osuosl.org (Postfix) with ESMTPS id BC58F20191 for ; Fri, 18 Oct 2013 09:27:33 +0000 (UTC) Received: by mail-pa0-f42.google.com with SMTP id kx10so4248381pab.29 for ; Fri, 18 Oct 2013 02:27:33 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:subject:date:message-id:in-reply-to:references; bh=isn/Vb8J7egnwHVaLhAG9PWaP9aeJ+TIQ/ZU+E5IHF8=; b=hW5Dhq6vvW6vJHm/zX61kMQtLSj05M+qABJAZMUxi9zcFYX1sVmGznKrAopjBWN9vD /n/JkXDGSqFqmvI2AemrCl0oJJmJ2QjfBRX6ElBtBp5GognywaFGhiOXBc3XeU+lnWH3 yhfB1XNRCXqxDcRauTcjnwI7SIJbpF/nabbG905gNBozkJrGhTvY5Ritgw0VbOesRPuB SIiQNrsUvxVFkpoetk81lPD7mOLHKOwEAgjsqc8vV70g2l7XdJwSICG5fAJ0HVQIsKzR nXpDatvmmyflkLYmQycOVFOXNX3GDVnGO9mE0Ud/Dst3C/I2GunL6ADrbHFvpS0H0vKA G9uA== X-Received: by 10.68.194.230 with SMTP id hz6mr2096199pbc.55.1382088453547; Fri, 18 Oct 2013 02:27:33 -0700 (PDT) Received: from ld2077.tmt.telital.com ([213.205.6.118]) by mx.google.com with ESMTPSA id hz10sm1101707pbc.36.2013.10.18.02.27.32 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Fri, 18 Oct 2013 02:27:33 -0700 (PDT) From: Fabio Porcedda To: buildroot@uclibc.org Date: Fri, 18 Oct 2013 11:27:15 +0200 Message-Id: <1382088437-30393-8-git-send-email-fabio.porcedda@gmail.com> X-Mailer: git-send-email 1.8.4 In-Reply-To: <1382088437-30393-1-git-send-email-fabio.porcedda@gmail.com> References: <1382088437-30393-1-git-send-email-fabio.porcedda@gmail.com> Subject: [Buildroot] [PATCH v8 6/8] uclibc: add support for top-level parallel make X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net To be able to use top-level parallel make we must not depend in a rule on the order of evaluation of the prerequisites, so instead of relyng on the left to right ordering of evaluation of the prerequisites add an explicit rule to describe the dependencies. The uclibc-install-target depends on uclibc-install-staging so add a rule for it. Signed-off-by: Fabio Porcedda --- package/uclibc/uclibc.mk | 2 ++ 1 file changed, 2 insertions(+) diff --git a/package/uclibc/uclibc.mk b/package/uclibc/uclibc.mk index dea36e7..c8eeb3d 100644 --- a/package/uclibc/uclibc.mk +++ b/package/uclibc/uclibc.mk @@ -559,3 +559,5 @@ uclibc-menuconfig: dirs uclibc-patch rm -f $(UCLIBC_DIR)/.stamp_{configured,built,target_installed,staging_installed} $(eval $(generic-package)) + +$(UCLIBC_TARGET_INSTALL_TARGET): $(UCLIBC_TARGET_INSTALL_STAGING)