From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-3.8 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_PATCH,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 759CDC43331 for ; Mon, 30 Mar 2020 08:57:02 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 53C0020748 for ; Mon, 30 Mar 2020 08:57:02 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729784AbgC3I5B (ORCPT ); Mon, 30 Mar 2020 04:57:01 -0400 Received: from smtprelay0169.hostedemail.com ([216.40.44.169]:39002 "EHLO smtprelay.hostedemail.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1729664AbgC3I5A (ORCPT ); Mon, 30 Mar 2020 04:57:00 -0400 Received: from filter.hostedemail.com (clb03-v110.bra.tucows.net [216.40.38.60]) by smtprelay01.hostedemail.com (Postfix) with ESMTP id AF130100E8422; Mon, 30 Mar 2020 08:56:59 +0000 (UTC) X-Session-Marker: 6A6F6540706572636865732E636F6D X-HE-Tag: debt11_5a093cf8cd63f X-Filterd-Recvd-Size: 2019 Received: from XPS-9350.home (unknown [47.151.136.130]) (Authenticated sender: joe@perches.com) by omf06.hostedemail.com (Postfix) with ESMTPA; Mon, 30 Mar 2020 08:56:58 +0000 (UTC) Message-ID: <27fadca7455ffa95779c33e546a57ea7906a1125.camel@perches.com> Subject: Re: commit 23cb8490c0d3 ("MAINTAINERS: fix bad file pattern") From: Joe Perches To: Andy Shevchenko Cc: Linus Torvalds , Andy Shevchenko , Lukas Bulwahn , LKML Date: Mon, 30 Mar 2020 01:55:04 -0700 In-Reply-To: References: Content-Type: text/plain; charset="ISO-8859-1" User-Agent: Evolution 3.34.1-2 MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, 2020-03-30 at 10:35 +0300, Andy Shevchenko wrote: > On Mon, Mar 30, 2020 at 5:38 AM Joe Perches wrote: > > MAINTAINERS: fix bad file pattern > > > > Testing 'parse-maintainers' due to the previous commit shows a bad file > > pattern for the "TI VPE/CAL DRIVERS" entry in the MAINTAINERS file. > > > > There's also a lot of mis-ordered entries, but I'm still a bit nervous > > about the inevitable and annoying merge problems it would probably cause > > to fix them up. > > I'm wondering if order depends to current locale. If so, the script > should override locale as well. Perhaps: --- diff --git a/scripts/parse-maintainers.pl b/scripts/parse-maintainers.pl index 2ca4eb3..08db9b 100755 --- a/scripts/parse-maintainers.pl +++ b/scripts/parse-maintainers.pl @@ -3,6 +3,7 @@ use strict; use Getopt::Long qw(:config no_auto_abbrev); +no locale; my $input_file = "MAINTAINERS"; my $output_file = "MAINTAINERS.new";