From patchwork Fri Oct 18 09:27:14 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Fabio Porcedda X-Patchwork-Id: 284492 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ozlabs.org (Postfix) with ESMTP id 8D1232C00BC for ; Fri, 18 Oct 2013 20:35:45 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 15831269EF; Fri, 18 Oct 2013 09:35:43 +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 KraaYWkDQCqi; Fri, 18 Oct 2013 09:35:41 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 7ABFB28827; Fri, 18 Oct 2013 09:35:41 +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 5767C1BFA82 for ; Fri, 18 Oct 2013 09:35:40 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 533662CD7B for ; Fri, 18 Oct 2013 09:35:40 +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 YW+ExXTjw-E5 for ; Fri, 18 Oct 2013 09:35:39 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-pd0-f174.google.com (mail-pd0-f174.google.com [209.85.192.174]) by silver.osuosl.org (Postfix) with ESMTPS id 7F19A269EF for ; Fri, 18 Oct 2013 09:35:39 +0000 (UTC) Received: by mail-pd0-f174.google.com with SMTP id y13so4378199pdi.19 for ; Fri, 18 Oct 2013 02:35:39 -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=Cm5xRaWa9DNqbNcIufD5tI9lqIK76CDafaXRR0J/l68=; b=dPsngx9w11yu9CbgXiROrCQeNML6vbYyRp0aSkSYnN5y8UYHbER/JYule6ZvS5Q8uO kpBCAIm7YrsicZNva+UauNpskl21TCNbJFWvkTPf4wPFNAyWqJvUxgShMpP/qn3ulcC2 8CdswrkAn7oQwZr51MVffEXq1wv0ZS5AmcdKcvecZJZ4L9C2cLN5v+Yb3f6ak3RKmYIV 9QCp2vm9WpuTWYvpjnszgD9ILcng/rIHN+2gBw/8jmHFztuP+UkOA7Jagc9XbaHcxNTC Z37yOAds8uykV2TwHDDZWIwFHL/RvTa0/eMD7bWadOdY1x6nmY/4EiW40Fk7DCAWQReG VQBg== X-Received: by 10.68.134.6 with SMTP id pg6mr2070051pbb.67.1382088451964; Fri, 18 Oct 2013 02:27:31 -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.30 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Fri, 18 Oct 2013 02:27:31 -0700 (PDT) From: Fabio Porcedda To: buildroot@uclibc.org Date: Fri, 18 Oct 2013 11:27:14 +0200 Message-Id: <1382088437-30393-7-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 5/8] glibc: 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 glibc-install-target depends on glibc-install-staging so add a rule for it. Signed-off-by: Fabio Porcedda --- package/glibc/glibc.mk | 2 ++ 1 file changed, 2 insertions(+) diff --git a/package/glibc/glibc.mk b/package/glibc/glibc.mk index e89c12a..838fb8c 100644 --- a/package/glibc/glibc.mk +++ b/package/glibc/glibc.mk @@ -130,3 +130,5 @@ define GLIBC_INSTALL_TARGET_CMDS endef $(eval $(autotools-package)) + +$(GLIBC_TARGET_INSTALL_TARGET): $(GLIBC_TARGET_INSTALL_STAGING)