From patchwork Thu Dec 12 18:27:18 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Clayton Shotwell X-Patchwork-Id: 300732 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 193472C00A7 for ; Fri, 13 Dec 2013 05:28:39 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 6858A8CDE4; Thu, 12 Dec 2013 18:28:38 +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 uacMC9pdjHVo; Thu, 12 Dec 2013 18:28:36 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id D23118C956; Thu, 12 Dec 2013 18:27:59 +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 C9FEA1BF832 for ; Thu, 12 Dec 2013 18:27:51 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id C276E8C6D2 for ; Thu, 12 Dec 2013 18:27:51 +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 G8hN0liMfPgg for ; Thu, 12 Dec 2013 18:27:49 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from secvs01.rockwellcollins.com (secvs01.rockwellcollins.com [205.175.225.240]) by whitealder.osuosl.org (Postfix) with ESMTPS id D44098C76F for ; Thu, 12 Dec 2013 18:27:45 +0000 (UTC) Received: from nosuchhost.198.131.in-addr.arpa (HELO collinscrsmtp01.rockwellcollins.com) ([131.198.63.132]) by mail-virt.rockwellcollins.com with ESMTP; 12 Dec 2013 12:27:45 -0600 Received: from nyx ([131.198.63.11]) by collinscrsmtp01.rockwellcollins.com (Lotus Domino Release 8.5.2FP2 HF162) with ESMTP id 2013121212274434-1847419 ; Thu, 12 Dec 2013 12:27:44 -0600 From: Clayton Shotwell To: buildroot@busybox.net Date: Thu, 12 Dec 2013 12:27:18 -0600 Message-Id: <1386872840-22051-19-git-send-email-clshotwe@rockwellcollins.com> X-Mailer: git-send-email 1.7.1 In-Reply-To: <1386872840-22051-1-git-send-email-clshotwe@rockwellcollins.com> References: <1386872840-22051-1-git-send-email-clshotwe@rockwellcollins.com> X-MIMETrack: Itemize by SMTP Server on CollinsCRSMTP01/CedarRapids/Collins/Rockwell(Release 8.5.2FP2 HF162|May 16, 2011) at 12/12/2013 12:27:44 PM, Serialize by Router on CollinsCRSMTP01/CedarRapids/Collins/Rockwell(Release 8.5.2FP2 HF162|May 16, 2011) at 12/12/2013 12:27:45 PM, Serialize complete at 12/12/2013 12:27:45 PM X-TNEFEvaluated: 1 Cc: Thomas Petazzoni Subject: [Buildroot] [ PATCH v4 18/20] busybox: ensure it finds pkg-config by setting PATH 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: Thomas Petazzoni Signed-off-by: Thomas Petazzoni Acked-by: Clayton Shotwell --- package/busybox/busybox.mk | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/package/busybox/busybox.mk b/package/busybox/busybox.mk index 24f0695..1a40b43 100644 --- a/package/busybox/busybox.mk +++ b/package/busybox/busybox.mk @@ -38,6 +38,7 @@ BUSYBOX_MAKE_ENV = \ CFLAGS="$(BUSYBOX_CFLAGS)" \ CFLAGS_busybox="$(BUSYBOX_CFLAGS_busybox)" BUSYBOX_MAKE_OPTS = \ + PATH="$(TARGET_PATH)" \ CC="$(TARGET_CC)" \ ARCH=$(KERNEL_ARCH) \ PREFIX="$(TARGET_DIR)" \