From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 12926 invoked by alias); 27 May 2016 13:06:14 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 12902 invoked by uid 89); 27 May 2016 13:06:13 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_NONE,RP_MATCHES_RCVD,SPF_PASS autolearn=ham version=3.3.2 spammy=spotted, suspicion, FSF, counterparts X-Spam-User: qpsmtpd, 2 recipients X-HELO: mailapp01.imgtec.com Received: from mailapp01.imgtec.com (HELO mailapp01.imgtec.com) (195.59.15.196) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 27 May 2016 13:06:12 +0000 Received: from HHMAIL01.hh.imgtec.org (unknown [10.100.10.19]) by Websense Email with ESMTPS id 9857EAD95C2DF; Fri, 27 May 2016 14:06:05 +0100 (IST) Received: from [10.20.78.60] (10.20.78.60) by HHMAIL01.hh.imgtec.org (10.100.10.21) with Microsoft SMTP Server id 14.3.294.0; Fri, 27 May 2016 14:06:08 +0100 Date: Fri, 27 May 2016 13:06:00 -0000 From: "Maciej W. Rozycki" To: CC: Nick Clifton , , Yao Qi , Jakub Sejdak , Subject: Re: Sync config.[guess|sub] from FSF GCC mainline In-Reply-To: <4d222baa-eb7e-d8a7-c684-57300143d84c@redhat.com> Message-ID: References: <1463044658-19231-1-git-send-email-jakub.sejdak@phoesys.com> <86y47fbdul.fsf@gmail.com> <8637pe9oio.fsf@gmail.com> <4d222baa-eb7e-d8a7-c684-57300143d84c@redhat.com> User-Agent: Alpine 2.00 (DEB 1167 2008-08-23) MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" X-SW-Source: 2016-05/txt/msg00496.txt.bz2 Hi, On Mon, 23 May 2016, Nick Clifton wrote: > I am checking in the attached patch to sync our top level config.guess > and config.sub files with their FSF GCC counterparts. This part looks like a regression to me, breaking character translation intended (single-argument `tr' without `-d' is I believe also not universally defined): diff --git a/config.guess b/config.guess index 802e5f1..b422c43 100755 --- a/config.guess +++ b/config.guess @@ -2,7 +2,7 @@ # Attempt to guess a canonical system name. # Copyright 1992-2016 Free Software Foundation, Inc. -timestamp='2016-01-11' +timestamp='2016-05-23' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by @@ -268,42 +272,42 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in [...] # A Tn.n version is a released field test version. # A Xn.n version is an unreleased experimental baselevel. # 1.2 uses "1.2" for uname -r. - echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` + echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz` -- see the `tr' invocation at the end. I spotted it by chance by reading the patch and I take it it is an accident which happened while doing a mechanical clean-up. Would you therefore please look into it and see if my suspicion is right? Thanks, Maciej