From patchwork Tue Oct 2 13:22:28 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 188520 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 B57DA2C008B for ; Tue, 2 Oct 2012 23:24:21 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 4D946101C72; Tue, 2 Oct 2012 13:24:17 +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 06s0r1Nj3JW6; Tue, 2 Oct 2012 13:24:11 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id 58468101FA7; Tue, 2 Oct 2012 13: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 5FECF8F74A for ; Tue, 2 Oct 2012 13:23:05 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 212848A3B3 for ; Tue, 2 Oct 2012 13:23:03 +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 OuMQXk0e8pow for ; Tue, 2 Oct 2012 13:23:02 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from loknar.toptech.com.ar (loknar.toptech.com.ar [85.10.205.246]) by whitealder.osuosl.org (Postfix) with ESMTPS id 1FE3289DB6 for ; Tue, 2 Oct 2012 13:23:01 +0000 (UTC) Received: from asgard (host200.186-125-82.telecom.net.ar [186.125.82.200]) (authenticated bits=0) by loknar.toptech.com.ar (8.14.5/8.14.5) with ESMTP id q92DMtgG025572 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 2 Oct 2012 13:22:58 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1349184180; bh=2QQnLoqaH1XfNDiah0beKeT9V14zMwcaCt6JBrmH2DY=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=OREl+PJRXjHTomEO5BYfMGX62Vc7/Wt/Ynzu5MjmRVl6hYng7w8bzJf4i0xZBqr1f sVnXEyoyXhW0OqgcytZ764XwUmlRh+G+73uOCmsU/CPAlnsH1trrI1aLdaBz/jBGcg 9pskeVj//LC9p6bSygbrMIdGq2ro4Nf37vG25fmE= Received: by asgard (sSMTP sendmail emulation); Tue, 02 Oct 2012 10:22:55 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Tue, 2 Oct 2012 10:22:28 -0300 Message-Id: <1349184148-28340-5-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 1.7.8.6 In-Reply-To: <1349184148-28340-1-git-send-email-gustavo@zacarias.com.ar> References: <1349184148-28340-1-git-send-email-gustavo@zacarias.com.ar> X-Virus-Scanned: clamav-milter 0.97.5 at loknar X-Virus-Status: Clean Subject: [Buildroot] [PATCHv4 5/5] iw: pkg-config cleanup 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 We no longer need to specify PKG_CONFIG_PATH since it's handled by the host-pkgconf wrapper. Signed-off-by: Gustavo Zacarias --- package/iw/iw.mk | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/package/iw/iw.mk b/package/iw/iw.mk index b1a86b3..b8dcd59 100644 --- a/package/iw/iw.mk +++ b/package/iw/iw.mk @@ -9,8 +9,7 @@ IW_SOURCE = iw-$(IW_VERSION).tar.bz2 IW_SITE = http://wireless.kernel.org/download/iw IW_DEPENDENCIES = host-pkgconf libnl IW_CONFIG = $(IW_DIR)/.config -IW_MAKE_ENV = PKG_CONFIG_PATH="$(STAGING_DIR)/usr/lib/pkgconfig" \ - PKG_CONFIG="$(HOST_DIR)/usr/bin/pkg-config" \ +IW_MAKE_ENV = PKG_CONFIG="$(HOST_DIR)/usr/bin/pkg-config" \ GIT_DIR=$(IW_DIR) ifeq ($(BR2_PREFER_STATIC_LIB),y)