From patchwork Mon Jul 4 12:46:24 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Rahul Bedarkar X-Patchwork-Id: 644114 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (smtp3.osuosl.org [140.211.166.136]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3rjmyz2L2Gz9sRZ for ; Mon, 4 Jul 2016 22:48:27 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id ED422309A5; Mon, 4 Jul 2016 12:48:24 +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 1lD-MYsG8-Cs; Mon, 4 Jul 2016 12:48:22 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id B57F230A29; Mon, 4 Jul 2016 12:48:20 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from silver.osuosl.org (smtp3.osuosl.org [140.211.166.136]) by ash.osuosl.org (Postfix) with ESMTP id 21C951C120C for ; Mon, 4 Jul 2016 12:48:17 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 1207A2F2E8 for ; Mon, 4 Jul 2016 12:48:17 +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 o7PJpaCAl-J1 for ; Mon, 4 Jul 2016 12:48:16 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mailapp01.imgtec.com (mailapp01.imgtec.com [195.59.15.196]) by silver.osuosl.org (Postfix) with ESMTP id 6002C30A8E for ; Mon, 4 Jul 2016 12:48:15 +0000 (UTC) Received: from HHMAIL01.hh.imgtec.org (unknown [10.100.10.19]) by Forcepoint Email with ESMTPS id BDB86FBB8AE3E for ; Mon, 4 Jul 2016 13:48:10 +0100 (IST) Received: from PUMAIL01.pu.imgtec.org (192.168.91.250) by HHMAIL01.hh.imgtec.org (10.100.10.19) with Microsoft SMTP Server (TLS) id 14.3.294.0; Mon, 4 Jul 2016 13:48:13 +0100 Received: from pudesk287-linux.pu.imgtec.org (192.168.91.23) by PUMAIL01.pu.imgtec.org (192.168.91.250) with Microsoft SMTP Server (TLS) id 14.3.266.1; Mon, 4 Jul 2016 18:18:11 +0530 From: Rahul Bedarkar To: Date: Mon, 4 Jul 2016 18:16:24 +0530 Message-ID: <1467636386-6759-4-git-send-email-rahul.bedarkar@imgtec.com> X-Mailer: git-send-email 2.6.2 In-Reply-To: <1467636386-6759-1-git-send-email-rahul.bedarkar@imgtec.com> References: <1467636386-6759-1-git-send-email-rahul.bedarkar@imgtec.com> MIME-Version: 1.0 X-Originating-IP: [192.168.91.23] Cc: Abhimanyu Vishwakarma , Rahul Bedarkar , Marcin Nowakowski Subject: [Buildroot] [PATCH 4/6] iw: correct license name X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" iw license is ISC. Reviewed-by: Marcin Nowakowski Signed-off-by: Rahul Bedarkar Acked-by: "Yann E. MORIN" --- package/iw/iw.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/iw/iw.mk b/package/iw/iw.mk index 200e703..6f3f309 100644 --- a/package/iw/iw.mk +++ b/package/iw/iw.mk @@ -7,7 +7,7 @@ IW_VERSION = 4.7 IW_SOURCE = iw-$(IW_VERSION).tar.xz IW_SITE = $(BR2_KERNEL_MIRROR)/software/network/iw -IW_LICENSE = iw license +IW_LICENSE = ISC IW_LICENSE_FILES = COPYING IW_DEPENDENCIES = host-pkgconf libnl IW_MAKE_OPTS = CC="$(TARGET_CC)" LD="$(TARGET_LD)" LDFLAGS="$(TARGET_LDFLAGS)"