From patchwork Sun Oct 6 14:19:14 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Petazzoni X-Patchwork-Id: 280876 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 555282C00E0 for ; Mon, 7 Oct 2013 01:23:02 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 88F9F93A85; Sun, 6 Oct 2013 14:23:01 +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 tHLiIKBRiM6W; Sun, 6 Oct 2013 14:23:01 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id 05E8793A8F; Sun, 6 Oct 2013 14:23:01 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 9275F1BF9A3 for ; Sun, 6 Oct 2013 14:22:59 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 8D8FB8B602 for ; Sun, 6 Oct 2013 14:22:59 +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 pHTy9Deto84f for ; Sun, 6 Oct 2013 14:22:58 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail.free-electrons.com (top.free-electrons.com [176.31.233.9]) by whitealder.osuosl.org (Postfix) with ESMTP id A5F258B549 for ; Sun, 6 Oct 2013 14:22:58 +0000 (UTC) Received: by mail.free-electrons.com (Postfix, from userid 106) id 749F493B; Sun, 6 Oct 2013 16:19:43 +0200 (CEST) Received: from localhost (AToulouse-651-1-247-171.w90-50.abo.wanadoo.fr [90.50.2.171]) by mail.free-electrons.com (Postfix) with ESMTPSA id 22B93899 for ; Sun, 6 Oct 2013 16:19:43 +0200 (CEST) From: Thomas Petazzoni To: buildroot@uclibc.org Date: Sun, 6 Oct 2013 16:19:14 +0200 Message-Id: <1381069171-29748-5-git-send-email-thomas.petazzoni@free-electrons.com> X-Mailer: git-send-email 1.8.1.2 In-Reply-To: <1381069171-29748-1-git-send-email-thomas.petazzoni@free-electrons.com> References: <1381069171-29748-1-git-send-email-thomas.petazzoni@free-electrons.com> Subject: [Buildroot] [PATCHv2 04/21] toolchain: move helpers.mk into toolchain-external/ 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 The helpers.mk file is no longer used by the Crosstool-NG backend, so it is moved into the toolchain/toolchain-external/ directory. Signed-off-by: Thomas Petazzoni --- toolchain/toolchain-buildroot.mk | 2 -- toolchain/toolchain-external.mk | 2 +- toolchain/{ => toolchain-external}/helpers.mk | 0 3 files changed, 1 insertion(+), 3 deletions(-) rename toolchain/{ => toolchain-external}/helpers.mk (100%) diff --git a/toolchain/helpers.mk b/toolchain/toolchain-external/helpers.mk similarity index 100% rename from toolchain/helpers.mk rename to toolchain/toolchain-external/helpers.mk diff --git a/toolchain/toolchain-buildroot.mk b/toolchain/toolchain-buildroot.mk index 3a05800..ff89125 100644 --- a/toolchain/toolchain-buildroot.mk +++ b/toolchain/toolchain-buildroot.mk @@ -2,8 +2,6 @@ # build of binutils, uClibc, kernel headers and all the intermediate # gcc steps. -include toolchain/helpers.mk - BUILDROOT_LIBC = $(call qstrip,$(BR2_TOOLCHAIN_BUILDROOT_LIBC)) toolchain-buildroot: host-gcc-final diff --git a/toolchain/toolchain-external.mk b/toolchain/toolchain-external.mk index 2f43db7..2644689 100644 --- a/toolchain/toolchain-external.mk +++ b/toolchain/toolchain-external.mk @@ -1,4 +1,4 @@ # Required includes for the external toolchain backend -include toolchain/helpers.mk +include toolchain/toolchain-external/helpers.mk include toolchain/toolchain-external/ext-tool.mk