From patchwork Tue Oct 23 01:47:55 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 193311 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 233282C0106 for ; Tue, 23 Oct 2012 12:49:06 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 9E98E101CDE; Tue, 23 Oct 2012 01:49:00 +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 eL09NMW3006f; Tue, 23 Oct 2012 01:48:55 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id B90CA101D70; Tue, 23 Oct 2012 01:48:32 +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 81D168F74A for ; Tue, 23 Oct 2012 01:48:39 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 3C1D38A393 for ; Tue, 23 Oct 2012 01:48:36 +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 BKq1g3lmSuOL for ; Tue, 23 Oct 2012 01:48:35 +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 31A238A33F for ; Tue, 23 Oct 2012 01:48:35 +0000 (UTC) Received: from asgard (host64.186-124-35.telecom.net.ar [186.124.35.64]) (authenticated bits=0) by loknar.toptech.com.ar (8.14.5/8.14.5) with ESMTP id q9N1mROn027626 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 23 Oct 2012 01:48:31 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1350956912; bh=NzlkEJ5edAiTgZfWTCrGAz/4VtnUp3feQVst6gDcJYw=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=Gltd7ZAe7gIhkCsHQ4ergTZMh/yykLKycnv7P1IZLgtYaTQBLhhvlaLRW9UjMuFlv uH3GgEItvSAuX7C3T2KM+U/ykwHW2+qMk+1/e4SIfAF7+ehOt+IjePPsUaSQ/ciiyd nkyh/k4FWkIxuJhqpSUJS1Gcg2H/o0w6/7LTaVdg= Received: by asgard (sSMTP sendmail emulation); Mon, 22 Oct 2012 22:48:26 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Mon, 22 Oct 2012 22:47:55 -0300 Message-Id: <1350956875-1726-5-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 1.7.8.6 In-Reply-To: <1350956875-1726-1-git-send-email-gustavo@zacarias.com.ar> References: <1350956875-1726-1-git-send-email-gustavo@zacarias.com.ar> X-Virus-Scanned: clamav-milter 0.97.5 at loknar X-Virus-Status: Clean Subject: [Buildroot] [PATCHv6 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 Acked-by: Thomas Petazzoni --- 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 7633124..651a2ca 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)