From patchwork Tue Mar 11 12:17:58 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Fabio Porcedda X-Patchwork-Id: 329061 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 2DF752C00B9 for ; Tue, 11 Mar 2014 23:18:27 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id BC39993553; Tue, 11 Mar 2014 12:18:18 +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 iG0ClDxJB4v5; Tue, 11 Mar 2014 12:18:18 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id 4BB0993510; Tue, 11 Mar 2014 12:18:18 +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 D0F6C1BFA28 for ; Tue, 11 Mar 2014 12:18:14 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id C7AD793391 for ; Tue, 11 Mar 2014 12:18:14 +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 HjPJVTouM4F2 for ; Tue, 11 Mar 2014 12:18:14 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-pd0-f176.google.com (mail-pd0-f176.google.com [209.85.192.176]) by hemlock.osuosl.org (Postfix) with ESMTPS id 75D9793230 for ; Tue, 11 Mar 2014 12:18:14 +0000 (UTC) Received: by mail-pd0-f176.google.com with SMTP id r10so8454465pdi.21 for ; Tue, 11 Mar 2014 05:18:14 -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=0BGtQS2OgySka4gCFlSPnlRXA1xpVnHWWDABA4mVfi8=; b=rH2qzbVC1lq+bzAPkk9w/rOLCX9muwZMr+8Hr4UnYBkyeHKLDuU75KhDzEO1DCfNZE BJkIuSEA9HSicfB91FoESfwCwM7zGVxExQxWmtnrwIpefc39CFZbbGMcZegThik9u9Jg cRTzrgW21wRV5RmC07NdiYh6I+MOc/l7skDih8vnDUqrrbFmnDOIFW9bVPfoCatm9X7d 3TNlJXwPNSbFwGEPEsKvE3qp5YLfpwJbqbaOEovF4y5Jg6d5FrTcJag/lTOLFg6SJbmJ CwDLMHiiOZQBta0vQJEPruhYjsXBg1BWlaMZJ8Wjkq6uWaCr3Uy6qCCcye6CT4oit+vq +CNA== X-Received: by 10.68.197.36 with SMTP id ir4mr47506147pbc.46.1394540294277; Tue, 11 Mar 2014 05:18:14 -0700 (PDT) Received: from ld2077.tmt.telital.com ([213.205.6.118]) by mx.google.com with ESMTPSA id sy2sm74368792pbc.28.2014.03.11.05.18.12 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 11 Mar 2014 05:18:13 -0700 (PDT) From: Fabio Porcedda To: buildroot@uclibc.org Date: Tue, 11 Mar 2014 13:17:58 +0100 Message-Id: <1394540278-28740-7-git-send-email-fabio.porcedda@gmail.com> X-Mailer: git-send-email 1.8.3.2 In-Reply-To: <1394540278-28740-1-git-send-email-fabio.porcedda@gmail.com> References: <1394540278-28740-1-git-send-email-fabio.porcedda@gmail.com> Subject: [Buildroot] [PATCH 6/6] Makefile: do not add the toolchain target to the TARGETS variable 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 Do not add the toolchain target to the TARGETS variable because now the toolchain target is a dependency added automatically so it is not necessary to add it anymore. Signed-off-by: Fabio Porcedda --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0420364..481f779 100644 --- a/Makefile +++ b/Makefile @@ -300,7 +300,7 @@ GNU_HOST_NAME := $(shell support/gnuconfig/config.guess) # ################################################################################ -TARGETS := toolchain +TARGETS := # silent mode requested? QUIET := $(if $(findstring s,$(MAKEFLAGS)),-q)