From patchwork Fri Aug 10 12:40:34 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Phil Perry X-Patchwork-Id: 1305301 Return-Path: X-Original-To: patchwork-linux-wireless@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork2.kernel.org (Postfix) with ESMTP id 60C12DF266 for ; Fri, 10 Aug 2012 12:40:39 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752129Ab2HJMkh (ORCPT ); Fri, 10 Aug 2012 08:40:37 -0400 Received: from quad.pendre.co.uk ([195.137.4.79]:47203 "EHLO quad.pendre.co.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751298Ab2HJMkg (ORCPT ); Fri, 10 Aug 2012 08:40:36 -0400 Received: from localhost (Quad [127.0.0.1]) by quad.pendre.co.uk (Postfix) with ESMTP id 403E7194004; Fri, 10 Aug 2012 13:40:35 +0100 (BST) X-Virus-Scanned: amavisd-new at pendre.co.uk Received: from quad.pendre.co.uk ([127.0.0.1]) by localhost (quad.pendre.co.uk [127.0.0.1]) (amavisd-new, port 10024) with LMTP id fdk3STihqGQv; Fri, 10 Aug 2012 13:40:34 +0100 (BST) Received: from [192.168.0.1] (pendre.co.uk [192.168.0.1]) by quad.pendre.co.uk (Postfix) with ESMTP id 521F2194002; Fri, 10 Aug 2012 13:40:34 +0100 (BST) Message-ID: <50250142.4010603@elrepo.org> Date: Fri, 10 Aug 2012 13:40:34 +0100 From: Phil Perry User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:10.0.6esrpre) Gecko/20120714 Thunderbird/10.0.6 MIME-Version: 1.0 To: "Luis R. Rodriguez" CC: lf_driver_backport@lists.linux-foundation.org, linux-wireless@vger.kernel.org Subject: Re: [PATCH 1/2] compat: fix KLIB_BUILD References: <502407FC.70704@elrepo.org> In-Reply-To: Sender: linux-wireless-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-wireless@vger.kernel.org On 10/08/12 00:00, Luis R. Rodriguez wrote: > On Thu, Aug 9, 2012 at 11:57 AM, Phil Perry wrote: >> This patch fixes a small typo in ${KLIB_BUILD} >> >> Signed-off-by: Philip J Perry > > I had issues applying this, I blame the > lf_driver_backport@lists.linux-foundation.org mailing list as we had > determine a while ago that it had issues. Phil, in the meantime can > you resend to linux-wireless ? > > David, > > is there a chance to create a backports@vger.kernel.org mailing list > for backporting effort? > > Luis > Resending to include linux-wireless@vger.kernel.org This patch fixes a small typo in ${KLIB_BUILD} Signed-off-by: Philip J Perry --- scripts/gen-compat-config.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) for i in $(seq 0 ${RHEL_MINOR}); do eval CONFIG_COMPAT_${RHEL_MAJOR}_${i}=y echo "export CONFIG_COMPAT_${RHEL_MAJOR}_${i}=y" diff --git a/scripts/gen-compat-config.sh b/scripts/gen-compat-config.sh index 3eba34e..cdb1584 100755 --- a/scripts/gen-compat-config.sh +++ b/scripts/gen-compat-config.sh @@ -48,7 +48,7 @@ done # The RHEL checks seem to annotate the existance of RHEL minor versions. RHEL_MAJOR=$(grep ^RHEL_MAJOR ${KLIB_BUILD}/Makefile | sed -n 's/.*= *\(.*\)/\1/p') if [[ ! -z ${RHEL_MAJOR} ]]; then - RHEL_MINOR=$(grep ^RHEL_MINOR $(KLIB_BUILD)/Makefile | sed -n 's/.*= *\(.*\)/\1/p') + RHEL_MINOR=$(grep ^RHEL_MINOR ${KLIB_BUILD}/Makefile | sed -n 's/.*= *\(.*\)/\1/p')