From patchwork Wed Sep 26 10:48:42 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 187041 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ozlabs.org (Postfix) with ESMTP id C07902C008A for ; Wed, 26 Sep 2012 20:52:07 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 090FF30DD8; Wed, 26 Sep 2012 10:52:05 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id AfQUgA3Gc7tm; Wed, 26 Sep 2012 10:51:59 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 5FEBE311F4; Wed, 26 Sep 2012 10:49:27 +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 E16E18F74A for ; Wed, 26 Sep 2012 10:49:27 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id D87BC814E7 for ; Wed, 26 Sep 2012 10:49:25 +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 k2nmP3esFYLl for ; Wed, 26 Sep 2012 10:49:20 +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 F0F3F81657 for ; Wed, 26 Sep 2012 10:49:09 +0000 (UTC) Received: from asgard (host55.190-231-14.telecom.net.ar [190.231.14.55]) (authenticated bits=0) by loknar.toptech.com.ar (8.14.5/8.14.5) with ESMTP id q8QAn3h9020677 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 26 Sep 2012 10:49:05 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1348656547; bh=f/ZwoNxIDUVsFMUA3+ZioAoQFr8/vEQgZJF4JdsCclU=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=iIIYcBZxRY/n7bxYmEET/E+sDO249O3zUELnlSHKwazkNUAw5lvwLe8gFt/80+KLl 2txDwWDXX//ew6DFaZya2SfGwczuSnIwvnTsCwPjQm0DEN4aeQby82SMI0q9OPruza g+CPGgnpArZFlv7pg/Ba7zjtGzuqSUHlgf7w9tU8= Received: by asgard (sSMTP sendmail emulation); Wed, 26 Sep 2012 07:49:02 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Wed, 26 Sep 2012 07:48:42 -0300 Message-Id: <1348656522-13698-4-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 1.7.8.6 In-Reply-To: <1348656522-13698-1-git-send-email-gustavo@zacarias.com.ar> References: <1348656522-13698-1-git-send-email-gustavo@zacarias.com.ar> X-Virus-Scanned: clamav-milter 0.97.5 at loknar X-Virus-Status: Clean Subject: [Buildroot] [PATCHv2 4/4] iw: pkg-config nitpicking 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 Since we're now using pkgconf with a wrapper script we no longer need to pass PKG_CONFIG_PATH to pkg-config to do the right thing. Also point PKG_CONFIG to PKG_CONFIG_HOST_BINARY rather than the hardcoded option. Signed-off-by: Gustavo Zacarias --- package/iw/iw.mk | 4 +--- 1 files changed, 1 insertions(+), 3 deletions(-) diff --git a/package/iw/iw.mk b/package/iw/iw.mk index b1a86b3..af11140 100644 --- a/package/iw/iw.mk +++ b/package/iw/iw.mk @@ -9,9 +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" \ - GIT_DIR=$(IW_DIR) +IW_MAKE_ENV = PKG_CONFIG="$(PKG_CONFIG_HOST_BINARY)" ifeq ($(BR2_PREFER_STATIC_LIB),y) # libnl needs pthread/m, so we need to explicitly with them when static