From patchwork Fri Dec 21 10:36:30 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Fabio Porcedda X-Patchwork-Id: 207783 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ozlabs.org (Postfix) with ESMTP id 495472C0092 for ; Fri, 21 Dec 2012 21:37:21 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id B52F78CD93; Fri, 21 Dec 2012 10:37:18 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 0vgxyGiKPZEd; Fri, 21 Dec 2012 10:37:08 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 55FD48CDE1; Fri, 21 Dec 2012 10:36:58 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ash.osuosl.org (Postfix) with ESMTP id 702948F79C for ; Fri, 21 Dec 2012 10:36:46 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 149E4A023B for ; Fri, 21 Dec 2012 10:36:41 +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 5xGkuMwGnHsu for ; Fri, 21 Dec 2012 10:36:40 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-bk0-f44.google.com (mail-bk0-f44.google.com [209.85.214.44]) by hemlock.osuosl.org (Postfix) with ESMTPS id E74A2A01F0 for ; Fri, 21 Dec 2012 10:36:39 +0000 (UTC) Received: by mail-bk0-f44.google.com with SMTP id w11so2243532bku.17 for ; Fri, 21 Dec 2012 02:36:37 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:from:to:subject:date:message-id:x-mailer:in-reply-to :references; bh=iSvvipx6+1JbJ8AEpwNbns6t+0VcSpcAhKnY2WGRt+A=; b=SWYKDM45SHhfNEzdMCtA0vjXw9DzgISPJsK4GylmNvga1BMiJELvxHTBTRATIXOEgK aZF/HZQIUl5XARCQRbMqDHmWX6l3br15BEiJxg7ooL6jGPcsMQdMKikpkgyPfrryekNe Fu/cYWGy770IK/KgUnM0QY6RHEl5Hr6RPAwSgVAm5ViTiFsQN++yKvBW6peI03RW+ytT mh+8dv4lYGqusWDeO7LZ3ujT+QKzds3W2i/ag4C1/oYOjhq4RU/XuUOZP7RDU+9q/F5W 8m+NRIKi8EWbL5xr1k1WrA50ZZwClOIXo7eVSfP4ew3kIo+qetTIGj7Un1MR+d7GrHq8 nG4Q== X-Received: by 10.204.143.147 with SMTP id v19mr6100893bku.32.1356086197883; Fri, 21 Dec 2012 02:36:37 -0800 (PST) Received: from ld2036.tmt.telital.com ([213.205.6.118]) by mx.google.com with ESMTPS id v8sm9412814bku.6.2012.12.21.02.36.36 (version=SSLv3 cipher=OTHER); Fri, 21 Dec 2012 02:36:36 -0800 (PST) From: Fabio Porcedda To: buildroot@uclibc.org Date: Fri, 21 Dec 2012 11:36:30 +0100 Message-Id: <1356086190-906-3-git-send-email-fabio.porcedda@gmail.com> X-Mailer: git-send-email 1.8.0 In-Reply-To: <1356086190-906-1-git-send-email-fabio.porcedda@gmail.com> References: <1356086190-906-1-git-send-email-fabio.porcedda@gmail.com> Subject: [Buildroot] [PATCH v2 2/2] Makefile: use toolchain target in the world target 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 This is to remove redundancy and simplify the rule. Signed-off-by: Fabio Porcedda Reviewed-by: Markos Chandras Acked-by: Arnout Vandecappelle (Essensium/Mind) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 458b8c5..296917e 100644 --- a/Makefile +++ b/Makefile @@ -379,7 +379,7 @@ prepare: $(BUILD_DIR)/buildroot-config/auto.conf toolchain: prepare dirs dependencies $(BASE_TARGETS) -world: prepare dirs dependencies $(BASE_TARGETS) $(TARGETS_ALL) +world: toolchain $(TARGETS_ALL) .PHONY: all world toolchain dirs clean distclean source outputmakefile \ legal-info legal-info-prepare legal-info-clean \