From patchwork Sun May 4 12:01:40 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Yann E. MORIN" X-Patchwork-Id: 345462 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from fraxinus.osuosl.org (fraxinus.osuosl.org [140.211.166.137]) by ozlabs.org (Postfix) with ESMTP id A367D140091 for ; Sun, 4 May 2014 22:02:03 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id DD3008B79D; Sun, 4 May 2014 12:02:01 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id IXabiBKEQPJf; Sun, 4 May 2014 12:02:00 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id 431D78B1EF; Sun, 4 May 2014 12:01:59 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from fraxinus.osuosl.org (fraxinus.osuosl.org [140.211.166.137]) by ash.osuosl.org (Postfix) with ESMTP id 1ADAD1C2226 for ; Sun, 4 May 2014 12:01:57 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 182BD8B0C0 for ; Sun, 4 May 2014 12:01:57 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 80ikKsR4GfmK for ; Sun, 4 May 2014 12:01:55 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-wg0-f46.google.com (mail-wg0-f46.google.com [74.125.82.46]) by fraxinus.osuosl.org (Postfix) with ESMTPS id D0C528B1BE for ; Sun, 4 May 2014 12:01:54 +0000 (UTC) Received: by mail-wg0-f46.google.com with SMTP id n12so4372396wgh.17 for ; Sun, 04 May 2014 05:01:53 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:date:message-id:in-reply-to:references; bh=aRCOrUIlkqnWULvF7JHFLLHcpBSD465ufxWO2412//o=; b=FdXx6Mik6chUblkAX/l2HbYvN7GRjRzIKO/QT2uqIOGgz/IzEzqONcdmdZ0hO9i6nV oV1WpZ5ohDJxZ/x02xbH3JZD6iHs01ZZQOLJkoMbJxGYyOwCQkqL0VVrvZbiY7OEc24K /Qb4tP1mGI8bo4Mz7cnieiusAC2fMqlZ6fk+/TMXNo/nHif0dAOKFykIc/dHIByUUEmI YcaZv8Rhc8EPkl4gJYasuH5vb7MowG8a+emHCo5OwKv7O3zwdsDKWutHAVbFmI6Ixr1W QikHqcZKt7AEiuDFibTBunsKbd3YNKMKwvUAfuqiqNeJ9b8yON3LHxKTbUQUT6Nzc2D6 oGaQ== X-Received: by 10.180.211.239 with SMTP id nf15mr11361038wic.9.1399204913372; Sun, 04 May 2014 05:01:53 -0700 (PDT) Received: from gourin.bzh.lan (ks3095497.kimsufi.com. [94.23.60.27]) by mx.google.com with ESMTPSA id iy13sm10455501wic.1.2014.05.04.05.01.52 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Sun, 04 May 2014 05:01:52 -0700 (PDT) From: "Yann E. MORIN" To: buildroot@buildroot.org Date: Sun, 4 May 2014 14:01:40 +0200 Message-Id: X-Mailer: git-send-email 1.8.3.2 In-Reply-To: References: Cc: "Yann E. MORIN" Subject: [Buildroot] [PATCH 01/11] Makefile: add BR2_DL_DIR to EXTRA_ENV 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 From: "Yann E. MORIN" Also export BR2_DL_DIR for incoming download helper scripts. Signed-off-by: "Yann E. MORIN" Reviewed-by: Samuel Martin Acked-by: Arnout Vandecappelle (Essensium/Mind) --- package/Makefile.in | 1 + 1 file changed, 1 insertion(+) diff --git a/package/Makefile.in b/package/Makefile.in index c34a3bf..e5e009c 100644 --- a/package/Makefile.in +++ b/package/Makefile.in @@ -303,6 +303,7 @@ HOST_MAKE_ENV=PATH=$(BR_PATH) \ # post-images) EXTRA_ENV=\ PATH=$(BR_PATH) \ + BR2_DL_DIR=$(BR2_DL_DIR) \ BUILD_DIR=$(BUILD_DIR) ################################################################################